From e16011163f939dec46afce54e3159c9096a63dc2 Mon Sep 17 00:00:00 2001 From: Oleksandr Labetskyi Date: Mon, 12 Feb 2024 12:57:30 +0200 Subject: [PATCH] Another small nit --- test/testsymboldatabase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testsymboldatabase.cpp b/test/testsymboldatabase.cpp index 533d44b5120..3b7b0818619 100644 --- a/test/testsymboldatabase.cpp +++ b/test/testsymboldatabase.cpp @@ -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() {