Skip to content

Commit

Permalink
Fix clang-tidy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
WeiqunZhang committed Aug 22, 2024
1 parent f09a8e2 commit 98f21e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/MultiPeriod/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ int main (int argc, char* argv[])
// Domain size: 2 x 128 x 4
Box box(IntVect(0), IntVect(AMREX_D_DECL(1, 127, 3)));
Array<int,AMREX_SPACEDIM> is_periodic{AMREX_D_DECL(1,1,1)};
Geometry geom(box, RealBox({AMREX_D_DECL(Real(0),Real(0),Real(0))},
{AMREX_D_DECL(Real(1),Real(1),Real(1))}),
Geometry geom(box, RealBox(AMREX_D_DECL(Real(0),Real(0),Real(0)),
AMREX_D_DECL(Real(1),Real(1),Real(1))),
CoordSys::cartesian, is_periodic);
BoxArray ba(box);
ba.maxSize(32);
Expand Down

0 comments on commit 98f21e7

Please sign in to comment.