simplified version of iterator_adaptor, plus fix to indirect iterator

and addition of projection iterator


[SVN r8317]
This commit is contained in:
Jeremy Siek
2000-11-24 19:40:51 +00:00
parent 80bcc4e643
commit 31fef5252a
2 changed files with 190 additions and 80 deletions

View File

@ -54,7 +54,7 @@ struct integer_range {
#ifdef BOOST_USE_ITERATOR_ADAPTORS
typedef iterator_adaptor<IntegerType,
counting_iterator_policies<IntegerType>,
counting_iterator_traits<IntegerType>, IntegerType> iterator;
counting_iterator_traits<IntegerType> > iterator;
#else
typedef int_iterator<IntegerType> iterator;
#endif