diff options
Diffstat (limited to '')
-rw-r--r-- | src/Globals.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Globals.h b/src/Globals.h index 93a24120d..e4dbe97d6 100644 --- a/src/Globals.h +++ b/src/Globals.h @@ -387,9 +387,21 @@ auto ToUnsigned(T a_Val) return static_cast<std::make_unsigned_t<T>>(a_Val); } +// https://stackoverflow.com/questions/1666802/is-there-a-class-macro-in-c +constexpr std::string_view methodName(std::string_view a_PrettyFunction) +{ + size_t Bracket = a_PrettyFunction.rfind("("); + size_t Space = a_PrettyFunction.rfind(" ", Bracket) + 1; + return a_PrettyFunction.substr(Space, Bracket - Space); +} +// https://stackoverflow.com/questions/48857887/pretty-function-in-visual-c +#if !defined(__PRETTY_FUNCTION__) && !defined(__GNUC__) +#define __PRETTY_FUNCTION__ __FUNCSIG__ +#endif +#define __METHOD_NAME__ methodName(__PRETTY_FUNCTION__) // Common headers (part 2, with macros): #include "Vector3.h" |