Commit 9eada39 1 parent 10a7f97 commit 9eada39 Copy full SHA for 9eada39
File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -144,9 +144,9 @@ private:
144
144
/* * Number of Fabs in the plotfile. */
145
145
int m_numFabs;
146
146
/* * Lower corner physical coordinates of each fab in the plotfile. */
147
- amrex::Vector<amrex::Array<amrex::Real, AMREX_SPACEDIM> > m_glo {{ AMREX_D_DECL ( 0 ., 0 ., 0 .)}} ;
147
+ amrex::Vector<amrex::Array<amrex::Real, AMREX_SPACEDIM> > m_glo;
148
148
/* * Upper corner physical coordinates of each fab in the plotfile. */
149
- amrex::Vector<amrex::Array<amrex::Real, AMREX_SPACEDIM> > m_ghi {{ AMREX_D_DECL ( 1 ., 1 ., 1 .)}} ;
149
+ amrex::Vector<amrex::Array<amrex::Real, AMREX_SPACEDIM> > m_ghi;
150
150
std::string m_CellPath;
151
151
152
152
};
Original file line number Diff line number Diff line change 22
22
using namespace amrex ::literals;
23
23
24
24
BTDPlotfileHeaderImpl::BTDPlotfileHeaderImpl (std::string const & Headerfile_path)
25
- : m_Header_path{Headerfile_path}
25
+ : m_Header_path{Headerfile_path},
26
+ m_glo{{AMREX_D_DECL (0 ., 0 ., 0 .)}},
27
+ m_ghi{{AMREX_D_DECL (1 ., 1 ., 1 .)}}
26
28
{
27
29
28
30
}
You can’t perform that action at this time.
0 commit comments