Continue Lua Rewrite

This commit is contained in:
Lion Kortlepel
2021-09-16 03:21:00 +02:00
parent c309fa28c6
commit ba0678dade
12 changed files with 215 additions and 39 deletions

View File

@@ -56,13 +56,13 @@ inline void _assert([[maybe_unused]] const char* file, [[maybe_unused]] const ch
}
#define beammp_assert(cond) _assert(__FILE__, __func__, __LINE__, #cond, (cond))
#define AssertNotReachable() _assert(__FILE__, __func__, __LINE__, "reached unreachable code", false)
#define beammp_assert_not_reachable() _assert(__FILE__, __func__, __LINE__, "reached unreachable code", false)
#else
// In release build, these macros turn into NOPs. The compiler will optimize these out.
#define Assert(x) \
#define beammp_assert(x) \
do { \
} while (false)
#define AssertNotReachable() \
#define beammp_assert_not_reachable() \
do { \
} while (false)
#endif // DEBUG