From bd5484e894140073b3c094897a2d49172440f8ea Mon Sep 17 00:00:00 2001 From: Oliver Kowalke Date: Sat, 28 Sep 2013 05:43:52 +0000 Subject: [PATCH] coroutine: fix compiler wrning in tests [SVN r85976] --- test/test_coroutine.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_coroutine.cpp b/test/test_coroutine.cpp index 5fd7449..b4a6bcb 100644 --- a/test/test_coroutine.cpp +++ b/test/test_coroutine.cpp @@ -522,6 +522,7 @@ void test_invalid_result() try { int i = coro.get(); + (void)i; } catch ( coro::invalid_result const& e) {