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:
parent
aa01d914f1
commit
e7d9d4739a
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user