fixed missing references on char* arguments

[SVN r25090]
This commit is contained in:
Thorsten Jørgen Ottosen
2004-09-14 21:24:20 +00:00
parent bd13c9082e
commit e6611aafb1
7 changed files with 32 additions and 29 deletions

View File

@ -225,10 +225,10 @@ namespace boost {
return !operator==(r);
}
bool operator<( const iterator_range& r ) const
{
return range_detail::less_than( *this, r );
}
bool operator<( const iterator_range& r ) const
{
return range_detail::less_than( *this, r );
}
#endif