*** empty log message ***

[SVN r24877]
This commit is contained in:
Thorsten Jørgen Ottosen
2004-09-02 17:32:58 +00:00
parent caac9c37c3
commit bf9925e2aa
3 changed files with 40 additions and 6 deletions

View File

@ -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