forked from boostorg/range
updated naming convention
[SVN r24517]
This commit is contained in:
@ -29,7 +29,7 @@
|
||||
|
||||
namespace boost
|
||||
{
|
||||
namespace range
|
||||
namespace range_detail
|
||||
{
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
@ -86,13 +86,13 @@ namespace range
|
||||
} // namespace 'range'
|
||||
|
||||
template< class T >
|
||||
inline BOOST_DEDUCED_TYPENAME size_type_of<T>::type size( const T& r )
|
||||
inline BOOST_DEDUCED_TYPENAME range_size<T>::type size( const T& r )
|
||||
{
|
||||
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
||||
using range::size;
|
||||
using range_detail::size;
|
||||
return size( r );
|
||||
#else
|
||||
return range::size( r );
|
||||
return range_detail::size( r );
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user