From cb359ed61e9ded038bbfa5be6e7ee40a871319fe Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Wed, 18 Aug 2021 21:36:08 +0300 Subject: [PATCH] Disable macro error for release with debug info builds in POCO. --- vendor/POCO/Foundation/include/Poco/Platform_WIN32.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/POCO/Foundation/include/Poco/Platform_WIN32.h b/vendor/POCO/Foundation/include/Poco/Platform_WIN32.h index 77e448fc..d2945fd2 100644 --- a/vendor/POCO/Foundation/include/Poco/Platform_WIN32.h +++ b/vendor/POCO/Foundation/include/Poco/Platform_WIN32.h @@ -36,7 +36,7 @@ // Check debug/release settings consistency #if defined(NDEBUG) && defined(_DEBUG) - #error Inconsistent build settings (check for /MD[d]) + //#error Inconsistent build settings (check for /MD[d]) #endif