Boost logo

Boost :

From: David Abrahams (david.abrahams_at_[hidden])
Date: 2002-05-06 21:05:26


----- Original Message -----
From: "Noel Yap" <yap_noel_at_[hidden]>

> I found the following in operators.hpp:
> template <class T, class P, class B =
> ::boost::detail::empty_base>
> struct input_iteratable
> : equality_comparable1<T
> , incrementable<T
> , dereferenceable<T, P, B
> > > > {};
>
>
> It looks like it really should be:
> template <class T, class P, class B =
> ::boost::detail::empty_base>
> struct input_iteratable
> : equality_comparable1<T>
> , incrementable<T>
> , dereferenceable<T, P, B
> > {};
> Can someone confirm this, please?

There's no mistake there. See
http://www.boost.org/libs/utility/operators.htm#chaining

-Dave


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk