aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2026-04-13 18:53:06 +0200
committerGitHub Enterprise <[email protected]>2026-04-13 18:53:06 +0200
commit85f5c7544ab775600f3c1fe52318078fe13edd39 (patch)
tree387a9903e9c8b0b2016ad943b012b5c36964875b /src
parentCompute OIDC auth, async Horde agents, and orchestrator improvements (#913) (diff)
downloadzen-85f5c7544ab775600f3c1fe52318078fe13edd39.tar.xz
zen-85f5c7544ab775600f3c1fe52318078fe13edd39.zip
use mimalloc by default (#952)
* make mimalloc default again
Diffstat (limited to 'src')
-rw-r--r--src/zencore/memory/memory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zencore/memory/memory.cpp b/src/zencore/memory/memory.cpp
index 9e19c5db7..8dbb04e64 100644
--- a/src/zencore/memory/memory.cpp
+++ b/src/zencore/memory/memory.cpp
@@ -44,10 +44,10 @@ InitGMalloc()
// when using sanitizers, we should use the default/ansi allocator
#if ZEN_OVERRIDE_NEW_DELETE
-# if ZEN_RPMALLOC_ENABLED
+# if ZEN_MIMALLOC_ENABLED
if (Malloc == MallocImpl::None)
{
- Malloc = MallocImpl::Rpmalloc;
+ Malloc = MallocImpl::Mimalloc;
}
# endif
#endif