From 84c2228b3f186fc8581c4453f3225c2c0c8e8c76 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 3 Dec 2003 13:32:05 +0000 Subject: [PATCH] Added support for BOOST_ALL_NO_LIB [SVN r21119] --- include/boost/regex/config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/config.hpp b/include/boost/regex/config.hpp index a4717e0b..8e736227 100644 --- a/include/boost/regex/config.hpp +++ b/include/boost/regex/config.hpp @@ -191,7 +191,7 @@ using std::distance; ****************************************************************************/ #ifdef __cplusplus -#if defined(BOOST_MSVC) && (BOOST_MSVC >= 1300) && !defined(BOOST_REGEX_NO_LIB) +#if defined(BOOST_MSVC) && (BOOST_MSVC >= 1300) && !defined(BOOST_REGEX_NO_LIB) && !defined(BOOST_ALL_NO_LIB) # define BOOST_REGEX_HAS_SHORT_WCHAR_T namespace boost{ typedef __wchar_t regex_wchar_type; } #else