diff options
-rw-r--r-- | compat/macros.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compat/macros.hpp b/compat/macros.hpp index 856d2293..3c93ee13 100644 --- a/compat/macros.hpp +++ b/compat/macros.hpp @@ -29,9 +29,9 @@ #endif #if defined _MSC_VER -# define cc_function_name (__FUNCSIG__) +# define cc_function_name __FUNCSIG__ #else -# define cc_function_name (__PRETTY_FUNCTION__) +# define cc_function_name __PRETTY_FUNCTION__ #endif #if !defined PP_CAT |