From 75dcd5673a9bd263b16d9b4681d70169978a3bde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Tue, 21 Oct 2025 18:20:26 -0700 Subject: [PATCH] Fixed build. --- include/bx/macros.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/bx/macros.h b/include/bx/macros.h index d6fb1cf..637efb1 100644 --- a/include/bx/macros.h +++ b/include/bx/macros.h @@ -214,7 +214,7 @@ extern "C" void* __cdecl _alloca(size_t _size); # if BX_CONFIG_DEBUG # define BX_ASSERT_LOC _BX_ASSERT_LOC # else -# define BX_ASSERT_LOC(_location, ...) BX_MACRO_BLOCK_BEGIN BX_UNUSED(_location) BX_MACRO_BLOCK_END +# define BX_ASSERT_LOC(_location, ...) BX_MACRO_BLOCK_BEGIN BX_UNUSED(_location); BX_MACRO_BLOCK_END # endif // BX_CONFIG_DEBUG #endif // BX_ASSERT_LOC @@ -230,7 +230,7 @@ extern "C" void* __cdecl _alloca(size_t _size); # if BX_CONFIG_DEBUG # define BX_TRACE_LOC _BX_TRACE_LOC # else -# define BX_TRACE_LOC(_location, ...) BX_MACRO_BLOCK_BEGIN BX_UNUSED(_location) BX_MACRO_BLOCK_END +# define BX_TRACE_LOC(_location, ...) BX_MACRO_BLOCK_BEGIN BX_UNUSED(_location); BX_MACRO_BLOCK_END # endif // BX_CONFIG_DEBUG #endif // BX_TRACE_LOC @@ -246,7 +246,7 @@ extern "C" void* __cdecl _alloca(size_t _size); # if BX_CONFIG_DEBUG # define BX_WARN_LOC _BX_WARN_LOC # else -# define BX_WARN_LOC(_location, ...) BX_MACRO_BLOCK_BEGIN BX_UNUSED(_location) BX_MACRO_BLOCK_END +# define BX_WARN_LOC(_location, ...) BX_MACRO_BLOCK_BEGIN BX_UNUSED(_location); BX_MACRO_BLOCK_END # endif // BX_CONFIG_DEBUG #endif // BX_WARN_LOC