diff options
-rw-r--r-- | compat/macros1.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/compat/macros1.h b/compat/macros1.h index f6b05f0f..2ebfc4df 100644 --- a/compat/macros1.h +++ b/compat/macros1.h @@ -28,12 +28,6 @@ # define function_name __PRETTY_FUNCTION__ #endif -#define PP_CAT(x,y) PP_CAT1(x,y) -#define PP_CAT1(x,y) x ## y - -#define PP_EXPAND(x) PP_EXPAND2(x) -#define PP_EXPAND2(x) x - #ifdef _MSC_VER # define unreachable() do { __assume(0); *(volatile int*)nullptr = 0; } while (0) /* NOLINT(clang-analyzer-core.NullDereference) */ #else |