We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 762c637 commit 9b26578Copy full SHA for 9b26578
src/Base/RealVect.cpp
@@ -93,7 +93,7 @@ void init_RealVect(py::module &m) {
93
.def(py::self * py::self)
94
.def("dotProduct", &RealVect::dotProduct, "Return dot product of this vector with another")
95
#if (AMREX_SPACEDIM == 3)
96
- .def("crossProduct", &RealVect::crossProduct, "Return cross product of this vector with another")
+ .def("crossProduct", &RealVect::crossProduct<>, "Return cross product of this vector with another")
97
#endif
98
.def("__mul__",
99
py::overload_cast<Real>(&RealVect::operator*, py::const_))
0 commit comments