From ae5fc9d445dcafe9e753b427d2c05e8d882e37f4 Mon Sep 17 00:00:00 2001 From: Michael Zingale Date: Tue, 26 Mar 2024 09:57:29 -0400 Subject: [PATCH] fix header guards don't start or end with `_` --- Exec/science/flame/MaestroInletBCs.H | 6 +++--- Exec/test_problems/mach_jet/MaestroInletBCs.H | 5 ++--- Source/BaseState.H | 4 ++-- Source/BaseStateGeometry.H | 4 ++-- Source/Maestro.H | 4 ++-- Source/MaestroBCThreads.H | 4 ++-- Source/MaestroInletBCs.H | 6 +++--- Source/PhysBCFunctMaestro.H | 4 ++-- 8 files changed, 18 insertions(+), 19 deletions(-) diff --git a/Exec/science/flame/MaestroInletBCs.H b/Exec/science/flame/MaestroInletBCs.H index 927424182..e96c94d7e 100644 --- a/Exec/science/flame/MaestroInletBCs.H +++ b/Exec/science/flame/MaestroInletBCs.H @@ -1,5 +1,5 @@ -#ifndef _MaestroInletBCs_H_ -#define _MaestroInletBCs_H_ +#ifndef MaestroInletBCs_H +#define MaestroInletBCs_H #include @@ -12,4 +12,4 @@ extern RealVector INLET_RHOX; extern amrex::Real INLET_VEL; }; // namespace InletBCs -#endif \ No newline at end of file +#endif diff --git a/Exec/test_problems/mach_jet/MaestroInletBCs.H b/Exec/test_problems/mach_jet/MaestroInletBCs.H index b7fb1760a..5c70d8ad1 100644 --- a/Exec/test_problems/mach_jet/MaestroInletBCs.H +++ b/Exec/test_problems/mach_jet/MaestroInletBCs.H @@ -1,6 +1,5 @@ - -#ifndef _MaestroInletBCs_H_ -#define _MaestroInletBCs_H_ +#ifndef MaestroInletBCs_H +#define MaestroInletBCs_H #include diff --git a/Source/BaseState.H b/Source/BaseState.H index db7f416a6..149082faa 100644 --- a/Source/BaseState.H +++ b/Source/BaseState.H @@ -1,5 +1,5 @@ -#ifndef BaseState_H_ -#define BaseState_H_ +#ifndef BaseState_H +#define BaseState_H #ifdef _OPENMP #include diff --git a/Source/BaseStateGeometry.H b/Source/BaseStateGeometry.H index 2385ba316..76fa0e178 100644 --- a/Source/BaseStateGeometry.H +++ b/Source/BaseStateGeometry.H @@ -1,5 +1,5 @@ -#ifndef BaseStateGeometry_H_ -#define BaseStateGeometry_H_ +#ifndef BaseStateGeometry_H +#define BaseStateGeometry_H #include #include diff --git a/Source/Maestro.H b/Source/Maestro.H index 69ffa51c8..5d85f0ac8 100644 --- a/Source/Maestro.H +++ b/Source/Maestro.H @@ -1,5 +1,5 @@ -#ifndef Maestro_H_ -#define Maestro_H_ +#ifndef Maestro_H +#define Maestro_H #ifdef _OPENMP #include diff --git a/Source/MaestroBCThreads.H b/Source/MaestroBCThreads.H index 63ae68ccb..71bd8236b 100644 --- a/Source/MaestroBCThreads.H +++ b/Source/MaestroBCThreads.H @@ -1,5 +1,5 @@ -#ifndef _MaestroBCThreads_H_ -#define _MaestroBCThreads_H_ +#ifndef MaestroBCThreads_H +#define MaestroBCThreads_H #include #include diff --git a/Source/MaestroInletBCs.H b/Source/MaestroInletBCs.H index 357aed37b..d1c05d30f 100644 --- a/Source/MaestroInletBCs.H +++ b/Source/MaestroInletBCs.H @@ -1,5 +1,5 @@ -#ifndef _MaestroInletBCs_H_ -#define _MaestroInletBCs_H_ +#ifndef MaestroInletBCs_H +#define MaestroInletBCs_H #include @@ -7,4 +7,4 @@ namespace InletBCs { // put your bcs here }; -#endif \ No newline at end of file +#endif diff --git a/Source/PhysBCFunctMaestro.H b/Source/PhysBCFunctMaestro.H index 12531b803..509d80327 100644 --- a/Source/PhysBCFunctMaestro.H +++ b/Source/PhysBCFunctMaestro.H @@ -1,5 +1,5 @@ -#ifndef PhysBCFunctMaestro_H_ -#define PhysBCFunctMaestro_H_ +#ifndef PhysBCFunctMaestro_H +#define PhysBCFunctMaestro_H #include