From af2d3bae8dda5b16f38108e9140f49124b412eb9 Mon Sep 17 00:00:00 2001 From: Oliver Kowalke <oliver.kowalke@gmail.com> Date: Mon, 5 Feb 2018 08:09:09 +0100 Subject: [PATCH 1/2] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 26558c1..2e14589 100644 --- a/README.md +++ b/README.md @@ -8,4 +8,7 @@ allows re-entering subroutines more than once (useful if state must be kept acro Coroutines can be viewed as a language-level construct providing a special kind of control flow. In contrast to threads, which are pre-emptive, coroutines switches are cooperative (programmer controls -when a switch will happen). The kernel is not involved in the coroutine switches. \ No newline at end of file +when a switch will happen). The kernel is not involved in the coroutine switches. + +Note that boost.coroutine is deprecated - boost.coroutine2 is its successor. +If you are forced to use a pre-C++11 compiler you should still use boost.coroutine. From 6115da1f21d9079e9cb418704e862836c7e1ac28 Mon Sep 17 00:00:00 2001 From: Oliver Kowalke <oliver.kowalke@gmail.com> Date: Mon, 12 Mar 2018 12:13:05 +0100 Subject: [PATCH 2/2] remove duplicate unit-test --- test/test_symmetric_coroutine.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/test/test_symmetric_coroutine.cpp b/test/test_symmetric_coroutine.cpp index a0564d4..d00e564 100644 --- a/test/test_symmetric_coroutine.cpp +++ b/test/test_symmetric_coroutine.cpp @@ -597,7 +597,6 @@ boost::unit_test::test_suite * init_unit_test_suite( int, char* []) test->add( BOOST_TEST_CASE( & test_yield_to_int) ); test->add( BOOST_TEST_CASE( & test_yield_to_ref) ); test->add( BOOST_TEST_CASE( & test_yield_to_different) ); - test->add( BOOST_TEST_CASE( & test_yield_to_different) ); test->add( BOOST_TEST_CASE( & test_move_coro) ); test->add( BOOST_TEST_CASE( & test_vptr) );