Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert Box to BoxND #4016

Merged
Next Next commit
convert Box to BoxND
  • Loading branch information
AlexanderSinn committed Jul 3, 2024
commit 83e5bff5a2ab87a28d0c14cc5e1cb60398f8639a
4 changes: 3 additions & 1 deletion Src/Base/AMReX_BaseFwd.H
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ class BoxList;
class DistributionMapping;
class Geometry;

class Box;
template<int dim>
class BoxND;
using Box = BoxND<AMREX_SPACEDIM>;
template<int dim>
class IntVectND;
using IntVect = IntVectND<AMREX_SPACEDIM>;
Expand Down
Loading
Loading