From 0e8d558a24787c25b1e0a45160e62131bf2f4a7c Mon Sep 17 00:00:00 2001
From: Simon Praetorius <simon.praetorius@tu-dresden.de>
Date: Wed, 22 May 2019 14:45:41 +0200
Subject: [PATCH] correct macro names

---
 src/amdis/common/ConceptsBase.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/amdis/common/ConceptsBase.hpp b/src/amdis/common/ConceptsBase.hpp
index 6716d4cf..67b1d6b4 100644
--- a/src/amdis/common/ConceptsBase.hpp
+++ b/src/amdis/common/ConceptsBase.hpp
@@ -4,7 +4,7 @@
 #include <dune/common/typetraits.hh>
 
 #define AMDIS_CONCAT_IMPL( x, y ) x##y
-#define AMDIS_MACRO_CONCAT( x, y ) CONCAT_IMPL( x, y )
+#define AMDIS_MACRO_CONCAT( x, y ) AMDIS_CONCAT_IMPL( x, y )
 
 #ifdef DOXYGEN
   #define REQUIRES(...)
@@ -15,7 +15,7 @@
   #define REQUIRES(...) std::enable_if_t<__VA_ARGS__ , int> = 0
   #define REQUIRES_(...) std::enable_if_t<__VA_ARGS__ , int>
   #define CONCEPT constexpr
-  #define CHECK_CONCEPT(...) static __VA_ARGS__ MACRO_CONCAT( _concept_check_, __COUNTER__ )
+  #define CHECK_CONCEPT(...) static __VA_ARGS__ AMDIS_MACRO_CONCAT( _concept_check_, __COUNTER__ )
 #endif
 
 namespace AMDiS
-- 
GitLab