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:
cla.grisenti
2025-06-29 22:39:05 +02:00
committed by GitHub
parent 72c3bd3d30
commit 560f769c03
+3
View File
@@ -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