GH #1050 CppUnit: fix gcc -Wshadow warnings

Also in Foundation tests.
This commit is contained in:
Miklos Vajna
2016-01-11 09:11:46 +01:00
parent 279ea9d0e2
commit c39c0aaf9d
121 changed files with 133 additions and 133 deletions

View File

@@ -26,7 +26,7 @@ namespace
class TestObject
{
public:
TestObject(const std::string& data): _data(data)
TestObject(const std::string& rData): _data(rData)
{
++_count;
}
@@ -71,7 +71,7 @@ namespace
}
SharedPtrTest::SharedPtrTest(const std::string& name): CppUnit::TestCase(name)
SharedPtrTest::SharedPtrTest(const std::string& rName): CppUnit::TestCase(rName)
{
}