Skip to content

Commit 5a6dab8

Browse files
committed
Fix Init Order
1 parent f92ef52 commit 5a6dab8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Base/BoxArray.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ void init_BoxArray(py::module &m) {
4242
}))
4343

4444
// Construct a BoxArray from a BoxList.
45-
.def(py::init< BoxList const& >())
45+
//.def(py::init< BoxList const& >())
4646

4747
//BoxArray (const BoxArray& rhs, const BATransformer& trans);
4848
//BoxArray (BoxList&& bl, IntVect const& max_grid_size);

src/pyAMReX.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ PYBIND11_MODULE(amrex_3d_pybind, m) {
102102
init_Periodicity(m);
103103
init_Array4(m);
104104
init_SmallMatrix(m);
105+
init_Vector(m);
105106
init_BoxArray(m);
106107
init_ParmParse(m);
107108
init_CoordSys(m);
108109
init_RealBox(m);
109-
init_Vector(m);
110110
init_Geometry(m);
111111
init_DistributionMapping(m);
112112
init_BaseFab(m);

0 commit comments

Comments
 (0)