From 66ae617224d2e5b569aee64650a7903b5b13f0d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20J=C3=A4rvi?= Date: Mon, 17 Sep 2001 10:31:44 +0000 Subject: [PATCH] small change to avoid a warning for an unused variable [SVN r11132] --- test/another_tuple_test_bench.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/another_tuple_test_bench.cpp b/test/another_tuple_test_bench.cpp index 17341c1..47aad45 100644 --- a/test/another_tuple_test_bench.cpp +++ b/test/another_tuple_test_bench.cpp @@ -65,9 +65,8 @@ void foo2() { dummy(tuple()); // likewise #endif - double dd = 5; - #ifdef E5 + double dd = 5; dummy(tuple(dd+3.14)); // should fail, temporary to non-const reference #endif }