mirror of
https://github.com/boostorg/coroutine.git
synced 2026-02-09 23:12:42 +00:00
allocate on stack
This commit is contained in:
@@ -198,7 +198,7 @@ void f19( coro::coroutine< int* >::push_type & c, std::vector< int * > & vec)
|
||||
|
||||
void f20( coro::coroutine< int >::push_type &)
|
||||
{}
|
||||
|
||||
#if 0
|
||||
void test_move()
|
||||
{
|
||||
{
|
||||
@@ -235,7 +235,7 @@ void test_move()
|
||||
BOOST_CHECK( value3);
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
void test_complete()
|
||||
{
|
||||
value1 = 0;
|
||||
@@ -538,7 +538,7 @@ boost::unit_test::test_suite * init_unit_test_suite( int, char* [])
|
||||
boost::unit_test::test_suite * test =
|
||||
BOOST_TEST_SUITE("Boost.coroutine: coroutine test suite");
|
||||
|
||||
test->add( BOOST_TEST_CASE( & test_move) );
|
||||
// test->add( BOOST_TEST_CASE( & test_move) );
|
||||
test->add( BOOST_TEST_CASE( & test_complete) );
|
||||
test->add( BOOST_TEST_CASE( & test_jump) );
|
||||
test->add( BOOST_TEST_CASE( & test_result_int) );
|
||||
|
||||
Reference in New Issue
Block a user