Revert "GH #1050 Foundation-tests: fix gcc -Wshadow warnings"

This commit is contained in:
Günter Obiltschnig
2016-09-05 08:28:18 +02:00
committed by GitHub
parent 9f6048a8d6
commit f7d3737526
21 changed files with 184 additions and 184 deletions

View File

@@ -82,8 +82,8 @@ void StringTest::testTrimLeft()
std::string s = "abc";
assert (trimLeft(s) == "abc");
}
std::string s2 = " abc ";
assert (trimLeft(s2) == "abc ");
std::string s = " abc ";
assert (trimLeft(s) == "abc ");
{
std::string s = " ab c ";
assert (trimLeft(s) == "ab c ");