rename coroutine -> asymmetric_coroutine in examples

This commit is contained in:
Oliver Kowalke
2014-02-03 19:26:39 +01:00
parent 67e3c8ef6a
commit 9419e36876
16 changed files with 57 additions and 57 deletions

View File

@@ -35,7 +35,7 @@ void bar( int i)
}
}
void foo( boost::coroutines::coroutine< void >::pull_type & source)
void foo( boost::coroutines::asymmetric_coroutine< void >::pull_type & source)
{
bar( count);
source();
@@ -44,7 +44,7 @@ void foo( boost::coroutines::coroutine< void >::pull_type & source)
void thread_fn()
{
{
boost::coroutines::coroutine< void >::push_type sink( foo);
boost::coroutines::asymmetric_coroutine< void >::push_type sink( foo);
sink();
}
}