Skip to content
Snippets Groups Projects
Commit def096c5 authored by Sebastian Eibl's avatar Sebastian Eibl
Browse files

added WALBERLA_OVERRIDE to wrap c++11 override

parent a1392562
Branches
Tags
No related merge requests found
...@@ -39,6 +39,12 @@ ...@@ -39,6 +39,12 @@
#define WALBERLA_PRAGMA(x) _Pragma(#x) #define WALBERLA_PRAGMA(x) _Pragma(#x)
#endif #endif
#ifndef WALBERLA_CXX_COMPILER_IS_IBM
#define WALBERLA_OVERRIDE
#else
#define WALBERLA_OVERRIDE override
#endif
// macro overloading (-> https://stackoverflow.com/a/24028231) // macro overloading (-> https://stackoverflow.com/a/24028231)
#define WALBERLA_GLUE(x, y) x y #define WALBERLA_GLUE(x, y) x y
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment