diff options
Diffstat (limited to 'runtime/base/macros.h')
-rw-r--r-- | runtime/base/macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/base/macros.h b/runtime/base/macros.h index fae9271d9e..b1eab92f0c 100644 --- a/runtime/base/macros.h +++ b/runtime/base/macros.h @@ -151,7 +151,7 @@ char (&ArraySizeHelper(T (&array)[N]))[N]; #define UNLIKELY(x) __builtin_expect((x), false) // Stringify the argument. -#define QUOTE(x) #x +#define QUOTE(x...) #x #define STRINGIFY(x) QUOTE(x) #ifndef NDEBUG |