From 660155382000a9552fbee8385b531751cdd72371 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 24 Feb 2004 19:49:28 +0000 Subject: [PATCH] Unfix unversioned VC++ check again, VC 7.1 still needs it. [SVN r22377] --- include/boost/bind/placeholders.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/bind/placeholders.hpp b/include/boost/bind/placeholders.hpp index cf40c78..9d0f6b1 100644 --- a/include/boost/bind/placeholders.hpp +++ b/include/boost/bind/placeholders.hpp @@ -38,7 +38,7 @@ static inline boost::arg<7> _7() { return boost::arg<7>(); } static inline boost::arg<8> _8() { return boost::arg<8>(); } static inline boost::arg<9> _9() { return boost::arg<9>(); } -#elif (defined(BOOST_MSVC) && BOOST_MSVC <= 1300) || (defined(__DECCXX_VER) && __DECCXX_VER <= 60590031) || defined(__MWERKS__) +#elif defined(BOOST_MSVC) || (defined(__DECCXX_VER) && __DECCXX_VER <= 60590031) || defined(__MWERKS__) static boost::arg<1> _1; static boost::arg<2> _2;