*** empty log message ***

[SVN r25318]
This commit is contained in:
Thorsten Jørgen Ottosen
2004-09-21 19:19:12 +00:00
parent 920a874e3a
commit 931bf86c87
2 changed files with 19 additions and 2 deletions

View File

@ -119,6 +119,23 @@ inline BOOST_DEDUCED_TYPENAME range_const_iterator<T>::type begin( const T& r )
return range_detail::begin( 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_const_iterator<const char*>::type begin<const char*>( const char*& r )
{
return r;
}
template<>
inline range_const_iterator<const wchar_t*>::type begin<const wchar_t*>( const wchar_t*& r )
{
return r;
}
#endif
} // namespace boost
#endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING