Skip to content

Commit

Permalink
Another small nit
Browse files Browse the repository at this point in the history
  • Loading branch information
olabetskyi committed Feb 12, 2024
1 parent 0d1a400 commit e160111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testsymboldatabase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2312,7 +2312,7 @@ class TestSymbolDatabase : public TestFixture {
ASSERT(f && f->function() && f->function()->isExtern() && f == f->function()->tokenDef && f->function()->retDef->str() == "void");

const Token *call = Token::findsimplematch(f->next(), "bar");
ASSERT(call && call->function() && call->function()->isExtern() && call->function() == f->function());
ASSERT(call && call->function() == f->function());
}

void classWithFriend() {
Expand Down

0 comments on commit e160111

Please sign in to comment.