Skip to content

Commit

Permalink
Update src/ImpactX.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
ax3l authored Aug 30, 2023
1 parent 83c898b commit e7ace4f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ImpactX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ namespace impactx
amrex::ParmParse const pp_amr("amr");
pp_amr.queryarr("n_cell", n_cell);

amrex::IntVect const lo(amrex::IntVect::TheZeroVector()), hi(n_cell);
amrex::IntVect const lo(amrex::IntVect::TheZeroVector());
amrex::IntVect hi(n_cell);
hi -= amrex::IntVect::TheUnitVector();
amrex::Box index_domain(lo,hi);
for (int i = 0; i <= max_level; i++)
Expand Down

0 comments on commit e7ace4f

Please sign in to comment.