From acf47b67b2c2584381927b70182cd058a63b8dad Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Fri, 1 Sep 2023 09:31:49 -0700 Subject: [PATCH] Fix using in headers --- src/Base/Vector.H | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Base/Vector.H b/src/Base/Vector.H index 043b433b..85539237 100644 --- a/src/Base/Vector.H +++ b/src/Base/Vector.H @@ -9,6 +9,7 @@ #include +#include #include #include #include @@ -18,15 +19,13 @@ namespace { - using namespace amrex; - /** CPU: __array_interface__ v3 * * https://numpy.org/doc/stable/reference/arrays.interface.html */ template > py::dict - array_interface(Vector const & vector) + array_interface(amrex::Vector const & vector) { auto d = py::dict(); bool const read_only = false;