From c0d67c71b42e3d2ffd292977f1f3f0b0e32cf04c Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sat, 25 Aug 2018 16:49:27 +0200 Subject: compat/macros: allow concat function name with literal --- compat/macros.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compat') 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 -- cgit v1.2.3