From 5cf0ef44a7a2354b9253ea316b39c0954b628c82 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 25 Aug 2005 16:27:28 +0000 Subject: [PATCH] Large patch from Ulrich Eckhardt to fix support for EVC++ 4. [SVN r30670] --- include/boost/logic/tribool_io.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/boost/logic/tribool_io.hpp b/include/boost/logic/tribool_io.hpp index 0e16928..3a05927 100644 --- a/include/boost/logic/tribool_io.hpp +++ b/include/boost/logic/tribool_io.hpp @@ -104,9 +104,10 @@ template<> inline std::basic_string get_default_indeterminate_name() { return "indeterminate"; } -#if BOOST_WORKAROUND(BOOST_MSVC, <= 1200) +#if BOOST_WORKAROUND(BOOST_MSVC, < 1300) // VC++ 6.0 chokes on the specialization below, so we're stuck without -// wchar_t support. What a pain. +// wchar_t support. What a pain. TODO: it might just need a the template +// parameter as function parameter... #else # ifndef BOOST_NO_WCHAR_T /// Returns the wide character string L"indeterminate".