From e077746e62ae072f93973c36a967f1fabe5179ad Mon Sep 17 00:00:00 2001 From: "Ben \"root\" Anderson" Date: Thu, 24 Oct 2013 19:38:49 -0500 Subject: [PATCH] Oops. --- src/global.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/global.h b/src/global.h index 2baf82ae2d..25b7d3f40c 100644 --- a/src/global.h +++ b/src/global.h @@ -155,8 +155,8 @@ void ShowWarningOrTrace( const char *file, int line, const char *message, bool b /* Use SM_UNIQUE_NAME to get the line number concatenated to x. This is useful for * generating unique identifiers in other macros. */ #define SM_UNIQUE_NAME3(x,line) x##line -#define SM_UNIQUE_NAME2(x,line) UNIQUE_NAME3(x, line) -#define SM_UNIQUE_NAME(x) UNIQUE_NAME2(x, __LINE__) +#define SM_UNIQUE_NAME2(x,line) SM_UNIQUE_NAME3(x, line) +#define SM_UNIQUE_NAME(x) SM_UNIQUE_NAME2(x, __LINE__) template struct CompileAssert; template <> struct CompileAssert { };