Ignore asserts

This commit is contained in:
ReinUsesLisp
2020-04-03 16:24:35 -03:00
parent 0d4ca5a8fc
commit 4d993f1b72

View File

@@ -30,20 +30,19 @@ __declspec(noinline, noreturn)
#define ASSERT(_a_) \
do \
if (!(_a_)) { \
assert_noinline_call([] { LOG_CRITICAL(Debug, "Assertion Failed!"); }); \
LOG_CRITICAL(Debug, "Assertion Failed!"); \
} \
while (0)
#define ASSERT_MSG(_a_, ...) \
do \
if (!(_a_)) { \
assert_noinline_call([&] { LOG_CRITICAL(Debug, "Assertion Failed!\n" __VA_ARGS__); }); \
LOG_CRITICAL(Debug, "Assertion Failed! " __VA_ARGS__); \
} \
while (0)
#define UNREACHABLE() assert_noinline_call([] { LOG_CRITICAL(Debug, "Unreachable code!"); })
#define UNREACHABLE_MSG(...) \
assert_noinline_call([&] { LOG_CRITICAL(Debug, "Unreachable code!\n" __VA_ARGS__); })
#define UNREACHABLE() LOG_CRITICAL(Debug, "Unreachable code!");
#define UNREACHABLE_MSG(...) LOG_CRITICAL(Debug, "Unreachable code! " __VA_ARGS__);
#ifdef _DEBUG
#define DEBUG_ASSERT(_a_) ASSERT(_a_)