mirror of
https://github.com/open-goal/jak-project
synced 2026-07-07 06:05:15 -04:00
Assert - added missing macros (#3968)
Compilation with the NO_ASSERT flag set results in errors. This happens because some the macros are not defined in the else branch of #ifndef NO_ASSERT.
This commit is contained in:
@@ -43,5 +43,8 @@
|
||||
|
||||
#define ASSERT(EX) ((void)0)
|
||||
#define ASSERT_MSG(EXPR, STR) ((void)0)
|
||||
#define ASSERT_NOT_REACHED() ((void)0)
|
||||
#define ASSERT_NOT_REACHED_MSG(STR) ((void)0)
|
||||
#define ASSERT_EQ_IMM(EXPR, EXPECTED) ((void)0)
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user