From 8992af95d15ae89e7a0ceeeb734fedf24c6b0f44 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 20 Nov 2002 13:17:52 +0000 Subject: [PATCH] Link bug workaround for MSVC and old Dec CXX [SVN r16342] --- include/boost/tuple/detail/tuple_basic_no_partial_spec.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/boost/tuple/detail/tuple_basic_no_partial_spec.hpp b/include/boost/tuple/detail/tuple_basic_no_partial_spec.hpp index 41816d0..0bfb127 100644 --- a/include/boost/tuple/detail/tuple_basic_no_partial_spec.hpp +++ b/include/boost/tuple/detail/tuple_basic_no_partial_spec.hpp @@ -766,6 +766,9 @@ namespace tuples { } // "ignore" allows tuple positions to be ignored when using "tie". namespace { +#if (defined(BOOST_MSVC) && BOOST_MSVC <= 1300) || (defined(__DECCXX_VER) && __DECCXX_VER <= 60590031) + static +#endif detail::swallow_assign ignore; }