diff options
author | 2023-08-21 17:08:42 -0600 | |
---|---|---|
committer | 2023-08-22 01:08:42 +0200 | |
commit | 3d29f8714fc299e429376339c2913c1dbbc94c53 (patch) | |
tree | 9c607e7acbd0345fc841b0358b1fedb79d398b7e /Source/Python/pyWarpX.H | |
parent | af677faa555d3e9711731e7844e1a007416e5789 (diff) | |
download | WarpX-3d29f8714fc299e429376339c2913c1dbbc94c53.tar.gz WarpX-3d29f8714fc299e429376339c2913c1dbbc94c53.tar.zst WarpX-3d29f8714fc299e429376339c2913c1dbbc94c53.zip |
pyWarpX.H: Add Include Guard (#4206)
Add an include guard to this header file.
Diffstat (limited to '')
-rw-r--r-- | Source/Python/pyWarpX.H | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Python/pyWarpX.H b/Source/Python/pyWarpX.H index 51740f75c..4bfbbdffb 100644 --- a/Source/Python/pyWarpX.H +++ b/Source/Python/pyWarpX.H @@ -6,6 +6,9 @@ * Authors: Axel Huebl * License: BSD-3-Clause-LBNL */ +#ifndef WARPX_PYWARPX_H_ +#define WARPX_PYWARPX_H_ + #include <pybind11/pybind11.h> #include <pybind11/stl.h> #include <pybind11/stl_bind.h> @@ -18,3 +21,5 @@ namespace py = pybind11; //using namespace warpx; // PYBIND11_MAKE_OPAQUE(std::list<...>) + +#endif // WARPX_PYWARPX_H_ |