28 Aug
2014
28 Aug
'14
6:07 p.m.
Oliver Kowalke wrote:
For push_coroutine/pull_coroutine, try using boost::begin/end.
and why not std::begin()? should be legal for c++11
`std::begin` calls member function `begin`: template <class C> auto begin(C& c) -> decltype(c.begin()) { return c.begin(); } But `push_coroutine`/`pull_coroutine` do not have member function `begin`, and so `std::begin` is not defined for them. Regards, Michel