Fix unversioned VC++ checks

[SVN r14436]
This commit is contained in:
Dave Abrahams
2002-07-13 12:26:19 +00:00
parent 48a81ef7ea
commit 8c0eb498d3

View File

@ -168,7 +168,7 @@ public:
compressed_pair_1(const ::boost::compressed_pair<T1,T2>& x)
: T2(x.second()), _first(x.first()) {}
#ifdef BOOST_MSVC
#if defined(BOOST_MSVC) && BOOST_MSVC <= 1300
// Total weirdness. If the assignment to _first is moved after
// the call to the inherited operator=, then this breaks graph/test/graph.cpp
// by way of iterator_adaptor.