minor update of comments

[SVN r41175]
This commit is contained in:
Thorsten Jørgen Ottosen
2007-11-17 20:22:05 +00:00
parent 6ac0cfe09c
commit a2f3a45214
3 changed files with 10 additions and 1 deletions

View File

@ -41,6 +41,11 @@ namespace range_detail
inline BOOST_DEDUCED_TYPENAME range_iterator<C>::type
range_begin( C& c )
{
//
// If you get a compile-error here, it is most likely because
// you have not implemented range_begin() properly in
// the namespace of C
//
return c.begin();
}