From bae34a3fc089109f9e6ee72c509233286cff320f Mon Sep 17 00:00:00 2001 From: Pavol Droba Date: Sun, 7 Mar 2004 17:19:12 +0000 Subject: [PATCH] dependend base class problem fix [SVN r22455] --- include/boost/algorithm/string/find_iterator.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/boost/algorithm/string/find_iterator.hpp b/include/boost/algorithm/string/find_iterator.hpp index b06fb60..7b3f356 100644 --- a/include/boost/algorithm/string/find_iterator.hpp +++ b/include/boost/algorithm/string/find_iterator.hpp @@ -108,7 +108,7 @@ namespace boost { // increment void increment() { - m_Match=do_find(m_Match.end(),m_End); + m_Match=this->do_find(m_Match.end(),m_End); } // comparison @@ -137,7 +137,7 @@ namespace boost { bool eof() const { return - is_null() || + this->is_null() || ( m_Match.begin() == m_End && m_Match.end() == m_End @@ -254,7 +254,7 @@ namespace boost { // increment void increment() { - match_type FindMatch=do_find( m_Next, m_End ); + match_type FindMatch=this->do_find( m_Next, m_End ); m_Match=match_type( m_Next, FindMatch.begin() ); m_Next=FindMatch.end(); } @@ -286,7 +286,7 @@ namespace boost { bool eof() const { return - is_null() || + this->is_null() || ( m_Match.begin() == m_End && m_Match.end() == m_End