coroutine: fix for#8024 for C++11 too

[SVN r82974]
This commit is contained in:
Oliver Kowalke
2013-02-18 15:50:07 +00:00
parent 09271762bd
commit 720d5fa037

View File

@@ -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 >