*** empty log message ***

[SVN r25152]
This commit is contained in:
Thorsten Jørgen Ottosen
2004-09-16 18:21:42 +00:00
parent 84a9126cc9
commit c7047652d8
6 changed files with 110 additions and 6 deletions

View File

@ -123,4 +123,14 @@ inline BOOST_DEDUCED_TYPENAME range_const_iterator<T>::type begin( const T& r )
#endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING
namespace boost
{
template< class T >
inline BOOST_DEDUCED_TYPENAME range_const_iterator<T>::type
const_begin( const T& r )
{
return begin( r );
}
}
#endif