fix: mistake in C++20 macro

This commit is contained in:
6arelyFuture 2024-03-20 17:57:46 +01:00
parent b187f25dc0
commit 83e468f4be
Signed by: Future
GPG Key ID: FA77F074E98D98A5

View File

@ -56,16 +56,12 @@
#define PRINT_FUNC print
#endif
#if !defined(TOOL)
PRINT_FUNC( format __VA_OPT__(,) __VA_ARGS__ )
#endif
#ifdef _UTILITY_DEBUG
#define _VERIFY( cond, msg ) \
assertEx(cond, msg)
#define _VERIFY(cond, msg) \
assertEx( cond, msg )
#define DEBUG_PRINT(msg) \
PRINT_FUNC(msg)
PRINT_FUNC( msg )
#else
/* The following are "empty" defines with gsc-tool */
#define _VERIFY(cond, msg)