Fixed build.

This commit is contained in:
Бранимир Караџић
2025-10-21 18:20:26 -07:00
parent af959f53f9
commit 75dcd5673a

View File

@@ -214,7 +214,7 @@ extern "C" void* __cdecl _alloca(size_t _size);
# if BX_CONFIG_DEBUG # if BX_CONFIG_DEBUG
# define BX_ASSERT_LOC _BX_ASSERT_LOC # define BX_ASSERT_LOC _BX_ASSERT_LOC
# else # 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_CONFIG_DEBUG
#endif // BX_ASSERT_LOC #endif // BX_ASSERT_LOC
@@ -230,7 +230,7 @@ extern "C" void* __cdecl _alloca(size_t _size);
# if BX_CONFIG_DEBUG # if BX_CONFIG_DEBUG
# define BX_TRACE_LOC _BX_TRACE_LOC # define BX_TRACE_LOC _BX_TRACE_LOC
# else # 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_CONFIG_DEBUG
#endif // BX_TRACE_LOC #endif // BX_TRACE_LOC
@@ -246,7 +246,7 @@ extern "C" void* __cdecl _alloca(size_t _size);
# if BX_CONFIG_DEBUG # if BX_CONFIG_DEBUG
# define BX_WARN_LOC _BX_WARN_LOC # define BX_WARN_LOC _BX_WARN_LOC
# else # 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_CONFIG_DEBUG
#endif // BX_WARN_LOC #endif // BX_WARN_LOC