From 9731ba2faf41904aea43ce70c5280d5a6c5518b2 Mon Sep 17 00:00:00 2001 From: Kasper Marstal <kaspermarstal@gmail.com> Date: Wed, 18 Nov 2015 15:40:27 +0100 Subject: [PATCH] STYLE: Remove header guards double underscore prefix which is usually reserved for system files --- Modules/Core/Blueprints/include/elxBlueprint.h | 6 +++--- Modules/Core/Blueprints/src/elxBlueprint.cxx | 6 +++--- Testing/Unit/elxDataManager.cxx | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Modules/Core/Blueprints/include/elxBlueprint.h b/Modules/Core/Blueprints/include/elxBlueprint.h index f0a9d19d..3ceeded8 100644 --- a/Modules/Core/Blueprints/include/elxBlueprint.h +++ b/Modules/Core/Blueprints/include/elxBlueprint.h @@ -1,5 +1,5 @@ -#ifndef __Blueprint_h -#define __Blueprint_h +#ifndef Blueprint_h +#define Blueprint_h #include "boost/graph/graph_traits.hpp" #include "boost/graph/directed_graph.hpp" @@ -103,4 +103,4 @@ private: } -#endif // #define __Blueprint_h \ No newline at end of file +#endif // #define Blueprint_h \ No newline at end of file diff --git a/Modules/Core/Blueprints/src/elxBlueprint.cxx b/Modules/Core/Blueprints/src/elxBlueprint.cxx index d78d2ce6..2bdfce06 100644 --- a/Modules/Core/Blueprints/src/elxBlueprint.cxx +++ b/Modules/Core/Blueprints/src/elxBlueprint.cxx @@ -1,5 +1,5 @@ -#ifndef __Blueprint_cxx -#define __Blueprint_cxx +#ifndef Blueprint_cxx +#define Blueprint_cxx #include "boost/graph/graphviz.hpp" @@ -157,4 +157,4 @@ Blueprint } // namespace elx -#endif // __Blueprint_cxx +#endif // Blueprint_cxx diff --git a/Testing/Unit/elxDataManager.cxx b/Testing/Unit/elxDataManager.cxx index 6b7da8aa..7cc481db 100644 --- a/Testing/Unit/elxDataManager.cxx +++ b/Testing/Unit/elxDataManager.cxx @@ -28,4 +28,4 @@ DataManager return path; } -#endif // __elxTestData_cxx \ No newline at end of file +#endif // __DataManager_cxx \ No newline at end of file -- GitLab