changed category for transform iterator traits to input iterator

[SVN r8936]
This commit is contained in:
Jeremy Siek
2001-02-04 23:45:57 +00:00
parent 7aea7b7881
commit 332f18cf9f

View File

@ -524,7 +524,7 @@ struct transform_iterator_traits {
typedef value_type reference;
typedef value_type* pointer;
typedef typename IteratorTraits::difference_type difference_type;
typedef typename IteratorTraits::iterator_category iterator_category;
typedef std::input_iterator_tag iterator_category;
};
template <class AdaptableUnaryFunction,