forked from boostorg/tuple
Link bug workaround for MSVC and old Dec CXX
[SVN r16342]
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user