Added Linux/signal exception handling.

This commit is contained in:
Branimir Karadžić
2025-08-23 09:20:41 -07:00
parent d858859d17
commit d2b8b1aab5
8 changed files with 146 additions and 28 deletions

View File

@@ -31,7 +31,12 @@ BX_NO_INLINE void unusedFunction()
void testAssert()
{
BX_PRAGMA_DIAGNOSTIC_PUSH();
BX_PRAGMA_DIAGNOSTIC_IGNORED_MSVC(4804); // warning C4804: '%': unsafe use of type 'bool' in operation)
BX_ASSERT(false % 1, "Assert works!");
BX_PRAGMA_DIAGNOSTIC_POP();
}
TEST_CASE("Macros", "")