Skip to content

Commit e341033

Browse files
committed
Format
1 parent bb3c979 commit e341033

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/symboldatabase.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8040,7 +8040,7 @@ void SymbolDatabase::setValueTypeInTokenList(bool reportDebugWarnings, Token *to
80408040
while (Token::simpleMatch(varTok, "["))
80418041
varTok = varTok->astOperand1();
80428042
if (Token::simpleMatch(varTok, "."))
8043-
varTok = varTok->astOperand2();
8043+
varTok = varTok->astOperand2();
80448044
const auto* const paramVariable = varTok->variable();
80458045
if (!paramVariable ||
80468046
!paramVariable->valueType() ||

test/testsymboldatabase.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9968,7 +9968,7 @@ class TestSymbolDatabase : public TestFixture {
99689968
tok = Token::findsimplematch(tok, "auto");
99699969
ASSERT(tok && tok->valueType());
99709970
ASSERT_EQUALS("iterator(std :: vector <)", tok->valueType()->str());
9971-
}
9971+
}
99729972
{
99739973
GET_SYMBOL_DB("struct S { std::vector<int> v[1][1]; };\n"
99749974
"void f(S& s) {\n"

0 commit comments

Comments
 (0)