Skip to content

Commit

Permalink
First draft
Browse files Browse the repository at this point in the history
  • Loading branch information
olabetskyi committed Feb 16, 2024
1 parent 95235ca commit ebfa7c5
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->isOperator())
outs += " isOperator=\"true\"";
if (function->isExplicit())
outs += " isExplicit=\"true\"";
if (function->hasOverrideSpecifier())
outs += " hasOverrideSpecifier=\"true\"";
if (function->hasFinalSpecifier())
Expand Down

0 comments on commit ebfa7c5

Please sign in to comment.