summaryrefslogtreecommitdiffhomepage
path: root/compat
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2019-05-03 07:50:41 +0200
committerStanislaw Halik <sthalik@misaki.pl>2019-05-03 07:50:41 +0200
commit6a2d77c29cc0ccc621e4a5e5a57b2444348c14f0 (patch)
treef9a5c3d203121de031ce63453e4d82eadab3f3fa /compat
parentb24d75d25e37830b1c20f656859df11e76045a71 (diff)
compat/macros: kill PP_{CAT,EXPAND}
Diffstat (limited to 'compat')
-rw-r--r--compat/macros1.h6
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