Skip to content
Snippets Groups Projects
Commit 0e8d558a authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

correct macro names

parent d46bc04c
No related branches found
No related tags found
1 merge request!58Add generalized derivative and local-to-global adapter to handle the global derivatives uniformly
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
#include <dune/common/typetraits.hh> #include <dune/common/typetraits.hh>
#define AMDIS_CONCAT_IMPL( x, y ) x##y #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 #ifdef DOXYGEN
#define REQUIRES(...) #define REQUIRES(...)
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
#define REQUIRES(...) std::enable_if_t<__VA_ARGS__ , int> = 0 #define REQUIRES(...) std::enable_if_t<__VA_ARGS__ , int> = 0
#define REQUIRES_(...) std::enable_if_t<__VA_ARGS__ , int> #define REQUIRES_(...) std::enable_if_t<__VA_ARGS__ , int>
#define CONCEPT constexpr #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 #endif
namespace AMDiS namespace AMDiS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment