fix formating

This commit is contained in:
Oliver Kowalke
2015-09-18 21:29:19 +02:00
parent 7183bb6e4c
commit 698c52ee89
2 changed files with 30 additions and 42 deletions

View File

@@ -11,14 +11,13 @@
int main()
{
int i = 0;
boost::coroutines2::coroutine< void >::push_type sink(
[&]( boost::coroutines2::coroutine< void >::pull_type & source) {
std::cout << "inside coroutine-fn" << std::endl;
});
sink();
std::cout << "\nDone" << std::endl;
std::cout << "Done" << std::endl;
return EXIT_SUCCESS;
}