Move to new iterator adaptors

[SVN r19074]
This commit is contained in:
Dave Abrahams 2003-07-11 22:18:58 +00:00
parent 04301ac6e9
commit 1d6f36e35d

View File

@ -12,7 +12,7 @@
#define BOOST_INTEGER_RANGE_HPP_
#include <boost/config.hpp>
#include <boost/counting_iterator.hpp>
#include <boost/iterator/counting_iterator.hpp>
namespace boost {
@ -21,7 +21,7 @@ namespace boost {
template <class IntegerType>
struct integer_range {
typedef typename counting_iterator_generator<IntegerType>::type iterator;
typedef counting_iterator<IntegerType> iterator;
typedef iterator const_iterator;
typedef IntegerType value_type;