Kaydet (Commit) 53ca207a authored tarafından Jan-Marek Glogowski's avatar Jan-Marek Glogowski

Fix shadowed Test member variable

Change-Id: I2dbb8a643acb21dc023cf8555663083230b93d15
üst a8d102c2
...@@ -566,14 +566,14 @@ void Test::testFormulaHashAndTag() ...@@ -566,14 +566,14 @@ void Test::testFormulaHashAndTag()
void Test::testFormulaTokenEquality() void Test::testFormulaTokenEquality()
{ {
struct Test struct FormulaTokenEqualityTest
{ {
const char* mpFormula1; const char* mpFormula1;
const char* mpFormula2; const char* mpFormula2;
bool mbEqual; bool mbEqual;
}; };
Test aTests[] = { FormulaTokenEqualityTest aTests[] = {
{ "R1C2", "R1C2", true }, { "R1C2", "R1C2", true },
{ "R1C2", "R1C3", false }, { "R1C2", "R1C3", false },
{ "R1C2", "R2C2", false }, { "R1C2", "R2C2", false },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment