diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2025-06-06 14:26:34 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2025-06-06 14:26:34 +1000 |
commit | 889114953fcc10552c83dff5a979e40d51356b65 (patch) | |
tree | 6c6e1bb5b766639654f80265fcf484c2536d0b0d /source/core/StarMemory.cpp | |
parent | 73e71cb452ee4cfd4453fb4051593db4d0d5293b (diff) |
jemalloc fix
i am as blind as a bat
Diffstat (limited to 'source/core/StarMemory.cpp')
-rw-r--r-- | source/core/StarMemory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/StarMemory.cpp b/source/core/StarMemory.cpp index dc13d08..6ecc509 100644 --- a/source/core/StarMemory.cpp +++ b/source/core/StarMemory.cpp @@ -51,7 +51,7 @@ namespace Star { void free(void* ptr, size_t size) { if (ptr) - je_sdallocx(ptr, size, 0); + ::sdallocx(ptr, size, 0); } #endif #elif STAR_USE_MIMALLOC |