From 25b1d071e10ba917705eddc736eb19f7c090bf0a Mon Sep 17 00:00:00 2001 From: Oliver Kowalke Date: Thu, 25 Jul 2013 07:21:21 +0000 Subject: [PATCH] coroutine: fix unit-test (error_code + errc) [SVN r85156] --- test/test_coroutine.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/test_coroutine.cpp b/test/test_coroutine.cpp index c915866..5fd7449 100644 --- a/test/test_coroutine.cpp +++ b/test/test_coroutine.cpp @@ -525,8 +525,6 @@ void test_invalid_result() } catch ( coro::invalid_result const& e) { - boost::system::error_code ec = e.code(); - BOOST_CHECK_EQUAL( coro::coroutine_errc::no_data, ec.value()); catched = true; } BOOST_CHECK( catched);