From 5dd164b0bc5c9b2f0e6e8eb73ce5a2cc3492e8a8 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sun, 8 Nov 2009 18:53:59 +0000 Subject: [PATCH] Suppress/fix some msvc and gcc compiler warnings. [SVN r57494] --- ref_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ref_test.cpp b/ref_test.cpp index d4237b4..71481fa 100644 --- a/ref_test.cpp +++ b/ref_test.cpp @@ -70,7 +70,7 @@ struct ref_wrapper struct copy_counter { static int count_; - copy_counter(copy_counter const& other) { + copy_counter(copy_counter const& /*other*/) { ++count_; } copy_counter() {}