From 4503ed841bd91fcc9fd6c0d46db566d5cf6a3602 Mon Sep 17 00:00:00 2001 From: Darin Adler Date: Sat, 22 Sep 2001 19:36:44 +0000 Subject: [PATCH] Get rid of unused parameter to avoid warnings. [SVN r11214] --- test/tuple_test_bench.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tuple_test_bench.cpp b/test/tuple_test_bench.cpp index 944d45f..cee648b 100644 --- a/test/tuple_test_bench.cpp +++ b/test/tuple_test_bench.cpp @@ -24,7 +24,7 @@ class C {}; // classes with different kinds of conversions class AA {}; class BB : public AA {}; -struct CC { CC() {} CC(const BB& b) {} }; +struct CC { CC() {} CC(const BB&) {} }; struct DD { operator CC() const { return CC(); }; }; // something to prevent warnings for unused variables