From 06a82e38bccec7eed593ff1c0f7587cc667b4407 Mon Sep 17 00:00:00 2001 From: RealKC <16511305+RealKC@users.noreply.github.com> Date: Fri, 24 Jan 2020 21:46:59 +0200 Subject: [PATCH] fix mismatched parantheses --- include/mimalloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mimalloc.h b/include/mimalloc.h index 38ecf122..447976d5 100644 --- a/include/mimalloc.h +++ b/include/mimalloc.h @@ -407,7 +407,7 @@ template struct mi_stl_allocator { #endif size_type max_size() const mi_attr_noexcept { return (std::numeric_limits::max() / sizeof(value_type)); } - #if (__cplusplus >= 201103L) || (_MSC_VER > 1900)) // C++11 + #if ((__cplusplus >= 201103L) || (_MSC_VER > 1900)) // C++11 pointer address(reference x) const mi_attr_noexcept { return std::addressof(x); } const_pointer address(const_reference x) const mi_attr_noexcept { return std::addressof(x); } #else