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; }