Skip to content

Commit

Permalink
Add to dump
Browse files Browse the repository at this point in the history
  • Loading branch information
olabetskyi committed Feb 13, 2024
1 parent d145f9c commit 76a291e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/symboldatabase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4281,6 +4281,10 @@ void SymbolDatabase::printXml(std::ostream &out) const
outs += accessControlToString(function->access);
outs +="\"";
}
if (function->hasOverrideSpecifier())
outs += " hasOverrideSpecifier=\"true\"";
if (function->hasFinalSpecifier())
outs += " hasFinalSpecifier=\"true\"";
if (function->isInlineKeyword())
outs += " isInlineKeyword=\"true\"";
if (function->isStatic())
Expand Down

0 comments on commit 76a291e

Please sign in to comment.