$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r62171 - sandbox/geometry/boost/geometry/iterators
From: barend.gehrels_at_[hidden]
Date: 2010-05-24 07:31:09
Author: barendgehrels
Date: 2010-05-24 07:31:08 EDT (Mon, 24 May 2010)
New Revision: 62171
URL: http://svn.boost.org/trac/boost/changeset/62171
Log:
Fixed syntax in equal / closing_iterator (will be iterator_facade)
Text files modified: 
   sandbox/geometry/boost/geometry/iterators/closing_iterator.hpp |     7 +++----                                 
   1 files changed, 3 insertions(+), 4 deletions(-)
Modified: sandbox/geometry/boost/geometry/iterators/closing_iterator.hpp
==============================================================================
--- sandbox/geometry/boost/geometry/iterators/closing_iterator.hpp	(original)
+++ sandbox/geometry/boost/geometry/iterators/closing_iterator.hpp	2010-05-24 07:31:08 EDT (Mon, 24 May 2010)
@@ -55,11 +55,10 @@
         this->base_reference() = m_end;
     }
 
-    //inline bool equal(closing_iterator const& other) const
-    inline bool operator==(closing_iterator const& other) const
+    inline bool equal(closing_iterator const& other) const
     {
-        return this->base() == other->base() 
-            && this->m_beyond == other->m_beyond;
+        return this->base() == other.base() 
+            && this->m_beyond == other.m_beyond;
     }