diff options
Diffstat (limited to 'Source/Python')
-rw-r--r-- | Source/Python/WarpXWrappers.cpp | 11 | ||||
-rw-r--r-- | Source/Python/WarpX_py.H | 3 | ||||
-rw-r--r-- | Source/Python/WarpX_py.cpp | 3 |
3 files changed, 10 insertions, 7 deletions
diff --git a/Source/Python/WarpXWrappers.cpp b/Source/Python/WarpXWrappers.cpp index 2bddd3b31..201af45c0 100644 --- a/Source/Python/WarpXWrappers.cpp +++ b/Source/Python/WarpXWrappers.cpp @@ -6,15 +6,16 @@ * * License: BSD-3-Clause-LBNL */ -#include <WarpXWrappers.h> -#include <WarpXParticleContainer.H> -#include <WarpX.H> -#include <WarpXUtil.H> -#include <WarpX_py.H> +#include "WarpXWrappers.h" +#include "Particles/WarpXParticleContainer.H" +#include "WarpX.H" +#include "Utils/WarpXUtil.H" +#include "WarpX_py.H" #include <AMReX.H> #include <AMReX_BLProfiler.H> + namespace { amrex::Real** getMultiFabPointers(const amrex::MultiFab& mf, int *num_boxes, int *ncomps, int *ngrow, int **shapes) diff --git a/Source/Python/WarpX_py.H b/Source/Python/WarpX_py.H index b6a813bfc..a40df9728 100644 --- a/Source/Python/WarpX_py.H +++ b/Source/Python/WarpX_py.H @@ -8,7 +8,8 @@ #ifndef WARPX_PY_H_ #define WARPX_PY_H_ -#include <WarpXWrappers.h> +#include "WarpXWrappers.h" + extern "C" { diff --git a/Source/Python/WarpX_py.cpp b/Source/Python/WarpX_py.cpp index 4ca06b644..f53bc007c 100644 --- a/Source/Python/WarpX_py.cpp +++ b/Source/Python/WarpX_py.cpp @@ -5,7 +5,8 @@ * * License: BSD-3-Clause-LBNL */ -#include <WarpX_py.H> +#include "WarpX_py.H" + extern "C" { |