We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fb3f1e commit 49ce02fCopy full SHA for 49ce02f
1 file changed
lib/symboldatabase.cpp
@@ -4281,6 +4281,10 @@ void SymbolDatabase::printXml(std::ostream &out) const
4281
outs += accessControlToString(function->access);
4282
outs +="\"";
4283
}
4284
+ if (function->isOperator())
4285
+ outs += " isOperator=\"true\"";
4286
+ if (function->isExplicit())
4287
+ outs += " isExplicit=\"true\"";
4288
if (function->hasOverrideSpecifier())
4289
outs += " hasOverrideSpecifier=\"true\"";
4290
if (function->hasFinalSpecifier())
0 commit comments