From d08b3d29de36c849b47e4ffddcf4fc0a426a206d Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 4 Mar 2016 09:00:13 +0100 Subject: [PATCH] -Werror,-Wunused-macros "VC_EXTRALEAN can only be used in MFC projects." ( "How to use VC_EXTRALEAN and WIN32_LEAN_AND_MEAN to enhance the build process in Visual C++") So presumably indeed not needed here (as reported by clang-cl). Change-Id: Id98c6e9e862e716cf5e238623c6ac4ca0603fd63 --- clew/source/clew.c | 1 - 1 file changed, 1 deletion(-) diff --git a/clew/source/clew.c b/clew/source/clew.c index c7f4a9b4a626..cd43418a936b 100644 --- a/clew/source/clew.c +++ b/clew/source/clew.c @@ -14,7 +14,6 @@ #ifndef CLCC_GENERATE_DOCUMENTATION #ifdef _WIN32 #define WIN32_LEAN_AND_MEAN - #define VC_EXTRALEAN #include typedef HMODULE CLCC_DYNLIB_HANDLE;