Skip to content

Commit 3de152d

Browse files
authored
#12247: dump file: Add "hasOverrideSpecifier" and "hasFinalSpecifier" to Function (#5981)
1 parent d145f9c commit 3de152d

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

lib/symboldatabase.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4281,6 +4281,10 @@ void SymbolDatabase::printXml(std::ostream &out) const
42814281
outs += accessControlToString(function->access);
42824282
outs +="\"";
42834283
}
4284+
if (function->hasOverrideSpecifier())
4285+
outs += " hasOverrideSpecifier=\"true\"";
4286+
if (function->hasFinalSpecifier())
4287+
outs += " hasFinalSpecifier=\"true\"";
42844288
if (function->isInlineKeyword())
42854289
outs += " isInlineKeyword=\"true\"";
42864290
if (function->isStatic())

0 commit comments

Comments
 (0)