Removing alloca compat include.

This commit is contained in:
Бранимир Караџић
2024-12-21 19:24:22 -08:00
parent 7dc7dfc380
commit 61cc316669
15 changed files with 16 additions and 655 deletions

View File

@@ -47,7 +47,7 @@ namespace bx
void quickSort(void* _data, uint32_t _num, uint32_t _stride, const ComparisonFn _fn)
{
uint8_t* pivot = (uint8_t*)alloca(_stride);
uint8_t* pivot = (uint8_t*)BX_STACK_ALLOC(_stride);
quickSortR(pivot, _data, _num, _stride, _fn);
}