summaryrefslogtreecommitdiff
path: root/boost/geometry/iterators/concatenate_iterator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/geometry/iterators/concatenate_iterator.hpp')
-rw-r--r--boost/geometry/iterators/concatenate_iterator.hpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/boost/geometry/iterators/concatenate_iterator.hpp b/boost/geometry/iterators/concatenate_iterator.hpp
index 20112b4c4c..5c4ae0af1e 100644
--- a/boost/geometry/iterators/concatenate_iterator.hpp
+++ b/boost/geometry/iterators/concatenate_iterator.hpp
@@ -89,36 +89,6 @@ public:
(types<OtherIt1, OtherIt2>));
}
- template
- <
- typename OtherIt1,
- typename OtherIt2,
- typename OtherValue,
- typename OtherReference
- >
- concatenate_iterator operator=(concatenate_iterator
- <
- OtherIt1,
- OtherIt2,
- OtherValue,
- OtherReference
- > const& other)
- {
- static const bool are_conv
- = boost::is_convertible<OtherIt1, Iterator1>::value
- && boost::is_convertible<OtherIt2, Iterator2>::value;
-
- BOOST_MPL_ASSERT_MSG((are_conv),
- NOT_CONVERTIBLE,
- (types<OtherIt1, OtherIt2>));
-
- m_it1 = other.m_it1;
- m_end1 = other.m_end1;
- m_begin2 = other.m_begin2;
- m_it2 = other.m_it2;
- return *this;
- }
-
private:
friend class boost::iterator_core_access;