From 6f08b12bc38166dee2f9740d396d617b32e887a3 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 26 Oct 2017 18:23:03 -0600 Subject: [PATCH] Minor --- src/hb-private.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hb-private.hh b/src/hb-private.hh index b139ed672..34476ca92 100644 --- a/src/hb-private.hh +++ b/src/hb-private.hh @@ -98,10 +98,10 @@ private: // Static assertions #ifndef static_assert -#define _PASTE1(a,b) a##b -#define _PASTE(a,b) _PASTE1(a,b) +#define HB_PASTE1(a,b) a##b +#define HB_PASTE(a,b) HB_PASTE1(a,b) #define static_assert(e, msg) \ - HB_UNUSED typedef int _PASTE(static_assertion_failed_at_line_, __LINE__) [(e) ? 1 : -1] + HB_UNUSED typedef int HB_PASTE(static_assertion_failed_at_line_, __LINE__) [(e) ? 1 : -1] #endif // static_assert #endif // __cplusplus < 201103L