mirror of
https://github.com/diamante0018/PP-GSC.git
synced 2025-04-19 12:02:53 +00:00
fix: mistake in C++20 macro
This commit is contained in:
parent
b187f25dc0
commit
83e468f4be
10
_utility.gsh
10
_utility.gsh
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user