mirror of
https://github.com/boostorg/coroutine.git
synced 2026-02-10 11:22:32 +00:00
coroutine: fix for#8024 for C++11 too
[SVN r82974]
This commit is contained in:
@@ -1398,6 +1398,18 @@ typename coroutine< Signature >::iterator
|
||||
end( coroutine< Signature > & c)
|
||||
{ return boost::end( c); }
|
||||
|
||||
template< typename Signature >
|
||||
inline
|
||||
typename coroutine< Signature >::const_iterator
|
||||
begin( coroutine< Signature > const& c)
|
||||
{ return boost::const_begin( c); }
|
||||
|
||||
template< typename Signature >
|
||||
inline
|
||||
typename coroutine< Signature >::const_iterator
|
||||
end( coroutine< Signature > const& c)
|
||||
{ return boost::const_end( c); }
|
||||
|
||||
}
|
||||
|
||||
template< typename Signature >
|
||||
|
||||
Reference in New Issue
Block a user