Features: Use variable in cxx_inheriting_constructors test.

Avoid warning with SolarisStudio.
This commit is contained in:
Stephen Kelly 2015-01-12 21:49:56 +01:00
parent 69182ce4ed
commit 5d57970dd9
1 changed files with 1 additions and 1 deletions

View File

@ -13,6 +13,6 @@ struct B : public A
void someFunc()
{
int i;
int i = 0;
B b(i);
}