[ox/std] Sort of fix custom assert

This commit is contained in:
Gary Talent 2024-04-09 23:46:54 -05:00
parent 79b42e1df7
commit 3ff91af86b

View File

@ -11,5 +11,5 @@
#if __has_include(<cassert>) #if __has_include(<cassert>)
#include <cassert> #include <cassert>
#else #else
#define assert(e) while (1); #define assert(e) while (!(e));
#endif #endif