add a range_fwd.hpp header file for the main classes/structs and the extension points.

This commit is contained in:
Neil Groves
2014-06-05 19:10:19 +01:00
parent 4c8164a9aa
commit fe1a592e46
5 changed files with 68 additions and 4 deletions

View File

@ -27,12 +27,12 @@ namespace boost
// default
//////////////////////////////////////////////////////////////////////////
template< typename C >
template< typename T >
struct range_reverse_iterator
{
typedef reverse_iterator<
BOOST_DEDUCED_TYPENAME range_iterator<
BOOST_DEDUCED_TYPENAME remove_reference<C>::type>::type > type;
BOOST_DEDUCED_TYPENAME remove_reference<T>::type>::type > type;
};