fixing a warning on sun-5.10-stdcxx-4.2.2_x86_64

[SVN r49091]
This commit is contained in:
Emil Dotchevski
2008-10-01 18:24:56 +00:00
parent 717997e014
commit 4182c3634e

View File

@ -41,8 +41,8 @@ derives_nothing
int & count; int & count;
explicit explicit
derives_nothing( int & count ): derives_nothing( int & c ):
count(count) count(c)
{ {
++count; ++count;
} }