diff --git a/include/boost/iterator/iterator_adaptors.hpp b/include/boost/iterator/iterator_adaptors.hpp index 6c03e14..229cb7c 100644 --- a/include/boost/iterator/iterator_adaptors.hpp +++ b/include/boost/iterator/iterator_adaptors.hpp @@ -682,9 +682,7 @@ namespace boost template reverse_iterator( reverse_iterator const& r -# ifndef BOOST_NO_ENABLE_IF_CONSTRUCTORS , typename enable_if_convertible::type* = 0 -# endif ) : super_t(r.base()) {} @@ -755,9 +753,7 @@ namespace boost template transform_iterator( transform_iterator const& t -# ifndef BOOST_NO_ENABLE_IF_CONSTRUCTORS , typename enable_if_convertible::type* = 0 -# endif ) : super_t(t.base()), m_f(t.functor()) {} @@ -883,9 +879,7 @@ namespace boost class OtherTraits> indirect_iterator( indirect_iterator const& y -# ifndef BOOST_NO_ENABLE_IF_CONSTRUCTORS , typename enable_if_convertible::type* = 0 -# endif ) : super_t(y.base()) {} @@ -951,9 +945,7 @@ namespace boost template filter_iterator( filter_iterator const& t - # ifndef BOOST_NO_ENABLE_IF_CONSTRUCTORS , typename enable_if_convertible::type* = 0 - # endif ) : super_t(t.base()), m_predicate(t.predicate()), m_end(t.end()) {}