From 25dee4a78ef7019191a5c3b6b3a0a131ff19c2a9 Mon Sep 17 00:00:00 2001 From: Eladash Date: Mon, 17 Aug 2020 17:19:49 +0300 Subject: [PATCH] Fix bitops test --- Utilities/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/types.h b/Utilities/types.h index 72ddb37a63..8e21c8d73b 100644 --- a/Utilities/types.h +++ b/Utilities/types.h @@ -18,7 +18,7 @@ #include #ifdef _MSC_VER -#ifndef __cpp_lib_bitops && _MSC_VER < 1928 +#if !defined(__cpp_lib_bitops) && _MSC_VER < 1928 #define __cpp_lib_bitops #endif #endif