From 5b1528f3f4daf1bd7895f14c053464694b3684d2 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sat, 13 Jul 2002 12:26:19 +0000 Subject: [PATCH] Fix unversioned VC++ checks [SVN r14436] --- 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 c76f7f5..3e3d833 100644 --- a/include/boost/bind/placeholders.hpp +++ b/include/boost/bind/placeholders.hpp @@ -36,7 +36,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) +#elif defined(BOOST_MSVC) && BOOST_MSVC <= 1300 static boost::arg<1> _1; static boost::arg<2> _2;