diff options
author | 2020-04-02 08:38:15 -0700 | |
---|---|---|
committer | 2020-04-02 08:38:15 -0700 | |
commit | 415dae0026abbb2a5e07b961ab9c60ef550a5229 (patch) | |
tree | 5bb4eaa97dc3b85892016101002f84c67f652d00 /Source/FieldSolver/FiniteDifferenceSolver/EvolveF.cpp | |
parent | fe49cdca472be586d50c4cfde38f4b5065f8fdb5 (diff) | |
download | WarpX-415dae0026abbb2a5e07b961ab9c60ef550a5229.tar.gz WarpX-415dae0026abbb2a5e07b961ab9c60ef550a5229.tar.zst WarpX-415dae0026abbb2a5e07b961ab9c60ef550a5229.zip |
Includes: Only From `Source/` (#873)
* Includes: Only From `Source/`
Avoid adding all directories to include paths:
- automatically structure includes more clearly, e.g. a util include
with a short name is clearly seen as such
- should have some small positive impact on compile time, since the
compiler has to search less directories for an include file
* Includes: Fix Non-Local Paths
Add missing prefix relative to `Source/` for WarpX-local includes.
Diffstat (limited to 'Source/FieldSolver/FiniteDifferenceSolver/EvolveF.cpp')
-rw-r--r-- | Source/FieldSolver/FiniteDifferenceSolver/EvolveF.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/FieldSolver/FiniteDifferenceSolver/EvolveF.cpp b/Source/FieldSolver/FiniteDifferenceSolver/EvolveF.cpp index 917cfaf8f..a8d8ad4c4 100644 --- a/Source/FieldSolver/FiniteDifferenceSolver/EvolveF.cpp +++ b/Source/FieldSolver/FiniteDifferenceSolver/EvolveF.cpp @@ -5,7 +5,7 @@ * License: BSD-3-Clause-LBNL */ -#include "WarpXAlgorithmSelection.H" +#include "Utils/WarpXAlgorithmSelection.H" #include "FiniteDifferenceSolver.H" #ifdef WARPX_DIM_RZ # include "FiniteDifferenceAlgorithms/CylindricalYeeAlgorithm.H" @@ -14,7 +14,7 @@ # include "FiniteDifferenceAlgorithms/CartesianCKCAlgorithm.H" # include "FiniteDifferenceAlgorithms/CartesianNodalAlgorithm.H" #endif -#include "WarpXConst.H" +#include "Utils/WarpXConst.H" #include "WarpX.H" #include <AMReX_Gpu.H> |