From 4182c3634efb2c54f044d3e56094dd37baf25b83 Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Wed, 1 Oct 2008 18:24:56 +0000 Subject: [PATCH] fixing a warning on sun-5.10-stdcxx-4.2.2_x86_64 [SVN r49091] --- test/cloning_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cloning_test.cpp b/test/cloning_test.cpp index 38f11a0..695e2af 100644 --- a/test/cloning_test.cpp +++ b/test/cloning_test.cpp @@ -41,8 +41,8 @@ derives_nothing int & count; explicit - derives_nothing( int & count ): - count(count) + derives_nothing( int & c ): + count(c) { ++count; }