1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-31 14:52:11 +01:00

[util] Implement METHOD_NAME for _MSC_VER

This commit is contained in:
Joshua Ashton 2020-08-05 23:47:00 +01:00 committed by Joshie
parent 145d8225f4
commit aa01d914f1

View File

@ -4,7 +4,11 @@
#include "log.h"
#ifdef _MSC_VER
#define METHOD_NAME __FUNCSIG__
#else
#define METHOD_NAME __PRETTY_FUNCTION__
#endif
#define TRACE_ENABLED