From 73e3961cd5100c5d32ef2fbf76cebd34667bf1ed Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Wed, 23 Oct 2002 18:12:37 +0000 Subject: [PATCH] fixed some typos [SVN r608] --- include/boost/iterator/iterator_adaptors.hpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/include/boost/iterator/iterator_adaptors.hpp b/include/boost/iterator/iterator_adaptors.hpp index 79d95b1..50e3091 100644 --- a/include/boost/iterator/iterator_adaptors.hpp +++ b/include/boost/iterator/iterator_adaptors.hpp @@ -41,7 +41,7 @@ inline bool operator==(const iterator_comparisons& xb, template inline bool operator!=(const iterator_comparisons& xb, - const iterator_comparisons& yb) + const iterator_comparisons& yb) { return !xb.downcast().equal(yb.downcast()); } @@ -175,10 +175,6 @@ struct reverse_iterator : m_base(y.m_base) { } - struct state : default_iterator_policies - { - }; - typename super::reference dereference() const { return *boost::prior(m_base); } void increment() { --m_base; }