Skip to content

Commit

Permalink
Fix #13358: Add 'isFriend' to DumpFile
Browse files Browse the repository at this point in the history
  • Loading branch information
olabetskyi committed Jan 15, 2025
1 parent 599f505 commit 31fc6de
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/symboldatabase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4264,6 +4264,8 @@ void SymbolDatabase::printXml(std::ostream &out) const
outs += " isInlineKeyword=\"true\"";
if (function->isStatic())
outs += " isStatic=\"true\"";
if (function->isFriend())
outs += " isFriend=\"true\"";
if (function->isAttributeNoreturn())
outs += " isAttributeNoreturn=\"true\"";
if (const Function* overriddenFunction = function->getOverriddenFunction()) {
Expand Down

0 comments on commit 31fc6de

Please sign in to comment.