We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d145f9c commit 3de152dCopy full SHA for 3de152d
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->hasOverrideSpecifier())
4285
+ outs += " hasOverrideSpecifier=\"true\"";
4286
+ if (function->hasFinalSpecifier())
4287
+ outs += " hasFinalSpecifier=\"true\"";
4288
if (function->isInlineKeyword())
4289
outs += " isInlineKeyword=\"true\"";
4290
if (function->isStatic())
0 commit comments