Skip to content

Commit

Permalink
Fix Init Order
Browse files Browse the repository at this point in the history
  • Loading branch information
ax3l committed Jan 23, 2025
1 parent f92ef52 commit 5a6dab8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Base/BoxArray.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ void init_BoxArray(py::module &m) {
}))

// Construct a BoxArray from a BoxList.
.def(py::init< BoxList const& >())
//.def(py::init< BoxList const& >())

//BoxArray (const BoxArray& rhs, const BATransformer& trans);
//BoxArray (BoxList&& bl, IntVect const& max_grid_size);
Expand Down
2 changes: 1 addition & 1 deletion src/pyAMReX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@ PYBIND11_MODULE(amrex_3d_pybind, m) {
init_Periodicity(m);
init_Array4(m);
init_SmallMatrix(m);
init_Vector(m);
init_BoxArray(m);
init_ParmParse(m);
init_CoordSys(m);
init_RealBox(m);
init_Vector(m);
init_Geometry(m);
init_DistributionMapping(m);
init_BaseFab(m);
Expand Down

0 comments on commit 5a6dab8

Please sign in to comment.