*** empty log message ***

[SVN r24622]
This commit is contained in:
Thorsten Jørgen Ottosen
2004-08-20 19:26:34 +00:00
parent df504d811a
commit 4de4fbc46e
3 changed files with 11 additions and 4 deletions

View File

@ -35,7 +35,7 @@ namespace range_detail
template< typename C >
inline bool empty( const C& c )
{
return begin( c ) == end( c );
return boost::begin( c ) == boost::end( c );
}
//////////////////////////////////////////////////////////////////////