forked from boostorg/range
*** empty log message ***
[SVN r24877]
This commit is contained in:
@ -91,6 +91,22 @@ inline BOOST_DEDUCED_TYPENAME range_size<T>::type size( const T& r )
|
||||
return range_detail::size( r );
|
||||
}
|
||||
|
||||
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
||||
// BCB is not able to overload pointer when class overloads are also available
|
||||
template<>
|
||||
inline range_size<const char*>::type size<const char*>( const char* r )
|
||||
{
|
||||
return range_detail::str_size( r );
|
||||
}
|
||||
|
||||
template<>
|
||||
inline range_size<const wchar_t*>::type size<const wchar_t*>( const wchar_t* r )
|
||||
{
|
||||
return range_detail::str_size( r );
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
} // namespace 'boost'
|
||||
|
||||
#endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
||||
|
Reference in New Issue
Block a user