fixed problem with an iterator being == end and dereferencing it

[SVN r28142]
This commit is contained in:
Victor A. Wagner Jr.
2005-04-12 04:37:06 +00:00
parent 2074344846
commit 0f827f89cf

View File

@ -471,7 +471,7 @@ namespace boost {
if( m_eCompress==token_compress_on ) if( m_eCompress==token_compress_on )
{ {
// Find first non-matching character // Find first non-matching character
while( m_Pred(*It2) && It2!=End ) ++It2; while( It2!=End && m_Pred(*It2) ) ++It2;
} }
else else
{ {