From cc3ebc18b8d85c9d3dc180ece1c9d245d74e177a Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 15 Oct 2002 10:57:08 +0000 Subject: [PATCH] Fix for Compaq C++ (Ralf W. Grosse-Kunstleve) [SVN r15929] --- 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 3e3d833..9c0ab01 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) && BOOST_MSVC <= 1300 +#elif (defined(BOOST_MSVC) && BOOST_MSVC <= 1300) || (defined(__DECCXX_VER) && __DECCXX_VER <= 60590031) static boost::arg<1> _1; static boost::arg<2> _2;