Link bug workaround for MSVC and old Dec CXX

[SVN r16342]
This commit is contained in:
Dave Abrahams
2002-11-20 13:17:52 +00:00
parent ae40fce7c9
commit 8992af95d1

View File

@ -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;
}