From 01da3f387161c17540b2be84a71817f1871d2d72 Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Sun, 3 May 2015 20:57:00 -0700 Subject: [PATCH] * Fix pretty function --- include/Athena/Global.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Athena/Global.hpp b/include/Athena/Global.hpp index 5c3c5ae..0311a33 100644 --- a/include/Athena/Global.hpp +++ b/include/Athena/Global.hpp @@ -25,7 +25,7 @@ #endif #ifndef AT_PRETTY_FUNCTION -# ifdef __PRETTY_FUNCTION__ +# if defined(__PRETTY_FUNCTION__) || defined(__GNUC__) # define AT_PRETTY_FUNCTION __PRETTY_FUNCTION__ # elif defined(__FUNCSIG__) # define AT_PRETTY_FUNCTION __FUNCSIG__