summaryrefslogtreecommitdiff
path: root/boost/detail/ob_compressed_pair.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/detail/ob_compressed_pair.hpp')
-rw-r--r--boost/detail/ob_compressed_pair.hpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/boost/detail/ob_compressed_pair.hpp b/boost/detail/ob_compressed_pair.hpp
index 727acab6da..326e454980 100644
--- a/boost/detail/ob_compressed_pair.hpp
+++ b/boost/detail/ob_compressed_pair.hpp
@@ -167,17 +167,6 @@ public:
compressed_pair_1(const ::boost::compressed_pair<T1,T2>& x)
: T2(x.second()), _first(x.first()) {}
-#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.
- compressed_pair_1& operator=(const compressed_pair_1& x) {
- _first = x._first;
- T2::operator=(x);
- return *this;
- }
-#endif
-
first_reference first() { return _first; }
first_const_reference first() const { return _first; }