From e417d07567105484dd91728d73d8632157736633 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: Sun, 23 Apr 2023 19:37:14 -0700 Subject: [PATCH] Fixed build. --- src/allocator.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/allocator.cpp b/src/allocator.cpp index e5a2f69..5e536db 100644 --- a/src/allocator.cpp +++ b/src/allocator.cpp @@ -37,7 +37,7 @@ namespace bx BX_UNUSED(_filePath, _line); _aligned_free(_ptr); # else - alignedFree(this, _ptr, _align, _file, _line); + alignedFree(this, _ptr, _align, Location(_filePath, _line) ); # endif // BX_ } @@ -54,7 +54,7 @@ namespace bx BX_UNUSED(_filePath, _line); return _aligned_malloc(_size, _align); # else - return alignedAlloc(this, _size, _align, _file, _line); + return alignedAlloc(this, _size, _align, Location(_filePath, _line) ); # endif // BX_ } @@ -67,7 +67,7 @@ namespace bx BX_UNUSED(_filePath, _line); return _aligned_realloc(_ptr, _size, _align); # else - return alignedRealloc(this, _ptr, _size, _align, _file, _line); + return alignedRealloc(this, _ptr, _size, _align, Location(_filePath, _line) ); # endif // BX_ }