1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-02 04:29:14 +01:00

[util] Fix trace macro for functions with no args

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

View File

@ -14,7 +14,7 @@
#ifdef TRACE_ENABLED
#define TRACE(...) \
do { dxvk::debug::trace(METHOD_NAME, __VA_ARGS__); } while (0)
do { dxvk::debug::trace(METHOD_NAME, ##__VA_ARGS__); } while (0)
#else
#define TRACE(...) \
do { } while (0)