roll back of ADL names

[SVN r40422]
This commit is contained in:
Thorsten Jørgen Ottosen
2007-10-24 15:18:22 +00:00
parent 4db083cd6d
commit 8984de1c74

View File

@ -57,24 +57,24 @@ namespace Foo
// to be defined because X defines the proper set of
// nested types.
//
inline X::iterator boost_range_begin( X& x )
inline X::iterator range_begin( X& x )
{
return x.vec.begin();
}
inline X::const_iterator boost_range_begin( const X& x )
inline X::const_iterator range_begin( const X& x )
{
return x.vec.begin();
}
inline X::iterator boost_range_end( X& x )
inline X::iterator range_end( X& x )
{
return x.vec.end();
}
inline X::const_iterator boost_range_end( const X& x )
inline X::const_iterator range_end( const X& x )
{
return x.vec.end();
}