From ad02086d3b45de030680b895762fa8a018edd07e Mon Sep 17 00:00:00 2001 From: Daan Date: Wed, 21 Aug 2024 17:07:01 -0700 Subject: [PATCH] remove default MI_DEBUG_GUARDED --- include/mimalloc/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mimalloc/types.h b/include/mimalloc/types.h index 4540998f..69f737b3 100644 --- a/include/mimalloc/types.h +++ b/include/mimalloc/types.h @@ -75,7 +75,7 @@ terms of the MIT license. A copy of the license can be found in the file // Use guard pages behind objects of a certain size (set by the MIMALLOC_DEBUG_GUARDED_MIN/MAX options) // Padding should be disabled when using guard pages -#define MI_DEBUG_GUARDED 1 +// #define MI_DEBUG_GUARDED 1 #if defined(MI_DEBUG_GUARDED) #define MI_PADDING 0 #endif