From 95baf1910acee102e17b0981275e7d2e00e60bc9 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Mon, 30 Sep 2013 00:22:10 +0000 Subject: [PATCH] Logic: Remove obsolete MSVC version check. [SVN r86041] --- include/boost/logic/tribool_io.hpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/include/boost/logic/tribool_io.hpp b/include/boost/logic/tribool_io.hpp index aa164ee..3ea52f3 100644 --- a/include/boost/logic/tribool_io.hpp +++ b/include/boost/logic/tribool_io.hpp @@ -104,17 +104,11 @@ template<> inline std::basic_string get_default_indeterminate_name() { return "indeterminate"; } -#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. TODO: it might just need a the template -// parameter as function parameter... -#else -# ifndef BOOST_NO_WCHAR_T +#ifndef BOOST_NO_WCHAR_T /// Returns the wide character string L"indeterminate". template<> inline std::basic_string get_default_indeterminate_name() { return L"indeterminate"; } -# endif #endif // http://www.cantrip.org/locale.html