mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-20 22:03:13 +01:00
RRenamed BX_CHECK to BX_ASSERT.
This commit is contained in:
@@ -100,7 +100,7 @@ extern "C" const char* strstr(const char* _str, const char* _find)
|
||||
|
||||
extern "C" void qsort(void* _base, size_t _num, size_t _size, bx::ComparisonFn _fn)
|
||||
{
|
||||
BX_CHECK(_num <= UINT32_MAX && _size <= UINT32_MAX, "");
|
||||
BX_ASSERT(_num <= UINT32_MAX && _size <= UINT32_MAX, "");
|
||||
return bx::quickSort(_base, _num, _size, _fn);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user