From d7a45faf33b617e065ee4f02e397c442a22865b4 Mon Sep 17 00:00:00 2001 From: LepilkinaElena Date: Mon, 30 Dec 2019 11:02:10 +0300 Subject: [PATCH] Fix error in condition in mimalloc (#3735) --- runtime/src/mimalloc/c/include/mimalloc-types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/mimalloc/c/include/mimalloc-types.h b/runtime/src/mimalloc/c/include/mimalloc-types.h index bbb7bfdee18..cc8803aaf1a 100644 --- a/runtime/src/mimalloc/c/include/mimalloc-types.h +++ b/runtime/src/mimalloc/c/include/mimalloc-types.h @@ -17,7 +17,7 @@ terms of the MIT license. A copy of the license can be found in the file // ------------------------------------------------------ // Define NDEBUG in the release version to disable assertions. -#if !KONAN_MI_MALLOC +#if KONAN_MI_MALLOC #define NDEBUG #endif