summaryrefslogtreecommitdiffhomepage
path: root/compat/macros1.h
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2018-12-28 03:02:57 +0100
committerStanislaw Halik <sthalik@misaki.pl>2019-01-16 07:48:18 +0100
commit6f04e4ca46e6f2dcd3eda63529a1bbd915f7676b (patch)
tree9aeb1332980c4285396457ad9f278495064549b5 /compat/macros1.h
parent3be3bb256f3e9362f8889f0532f875c5ad3b41fb (diff)
clang-tidy fixes only
Maybe global `-Wcomma' is too harsh. There should be no functional changes whatsoever.
Diffstat (limited to 'compat/macros1.h')
-rw-r--r--compat/macros1.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/compat/macros1.h b/compat/macros1.h
index 56f8e978..4c2d1c1e 100644
--- a/compat/macros1.h
+++ b/compat/macros1.h
@@ -35,9 +35,9 @@
#endif
#ifndef PP_EXPAND
-# define PP_EXPAND(x) PP_EXPAND__2(x)
-# define PP_EXPAND__2(x) PP_EXPAND__3(x) x
-# define PP_EXPAND__3(x) x
+# define PP_EXPAND(x) PP_EXPAND2(x)
+# define PP_EXPAND2(x) PP_EXPAND3(x) x
+# define PP_EXPAND3(x) x
#endif
#ifdef _MSC_VER