From d9eed4150b80800c6a6fd62e285aa5f945063321 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Wed, 19 Mar 2003 12:14:32 +0000 Subject: [PATCH] BOOST_MSVC<=1200 fix from Terje [SVN r18002] --- include/boost/lexical_cast.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/lexical_cast.hpp b/include/boost/lexical_cast.hpp index b7d6a63..a247649 100644 --- a/include/boost/lexical_cast.hpp +++ b/include/boost/lexical_cast.hpp @@ -29,7 +29,8 @@ #if defined(BOOST_NO_STRINGSTREAM) || \ defined(BOOST_NO_STD_WSTRING) || \ defined(BOOST_NO_STD_LOCALE) || \ - defined(BOOST_NO_CWCHAR) + defined(BOOST_NO_CWCHAR) || \ + defined(BOOST_MSVC) && (BOOST_MSVC <= 1200) #define DISABLE_WIDE_CHAR_SUPPORT #endif