From 3d29f8714fc299e429376339c2913c1dbbc94c53 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Mon, 21 Aug 2023 17:08:42 -0600 Subject: pyWarpX.H: Add Include Guard (#4206) Add an include guard to this header file. --- Source/Python/pyWarpX.H | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Source/Python/pyWarpX.H') 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 #include #include @@ -18,3 +21,5 @@ namespace py = pybind11; //using namespace warpx; // PYBIND11_MAKE_OPAQUE(std::list<...>) + +#endif // WARPX_PYWARPX_H_ -- cgit v1.2.3