From 30a6b03a9376ff3e35280c0f0c7a155f35c50a67 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 13 Jan 2003 21:20:37 +0000 Subject: [PATCH] Clear out flotsam [SVN r854] --- include/boost/iterator/iterator_adaptors.hpp | 8 -------- 1 file changed, 8 deletions(-) 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()) {}