diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-04 09:00:13 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-04 10:11:08 +0100 |
commit | d08b3d29de36c849b47e4ffddcf4fc0a426a206d (patch) | |
tree | 26358187235bfc2ab705de0b937c2a7726e096ad /clew | |
parent | 7a43da06139c04ca9739b5261d36fbefc8976bb0 (diff) |
-Werror,-Wunused-macros
"VC_EXTRALEAN can only be used in MFC projects."
(<https://support.microsoft.com/en-us/kb/166474> "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
Diffstat (limited to 'clew')
-rw-r--r-- | clew/source/clew.c | 1 |
1 files changed, 0 insertions, 1 deletions
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 <windows.h>
typedef HMODULE CLCC_DYNLIB_HANDLE;
|