Don't redefine macros.

Fixes https://github.com/boostorg/regex/issues/127
This commit is contained in:
jzmaddock
2021-06-06 09:07:28 +01:00
parent 7da62c1edb
commit dc9c5c50be

View File

@ -29,8 +29,12 @@
#include <boost/regex/v5/primary_transform.hpp>
#include <boost/regex/v5/object_cache.hpp>
#ifndef VC_EXTRALEAN
# define VC_EXTRALEAN
#endif
#ifndef WIN32_LEAN_AND_MEAN
# define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>
#if defined(_MSC_VER) && !defined(_WIN32_WCE) && !defined(UNDER_CE)