Skip to content

Commit

Permalink
issue #10713 "warning: explicit link request could not be resolved" -…
Browse files Browse the repository at this point in the history
… but I didn't explicitly request a link
  • Loading branch information
doxygen committed Mar 23, 2024
1 parent 470d220 commit 9b513db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docparser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -871,7 +871,7 @@ void DocParser::handleLinkedWord(DocNodeVariant *parent,DocNodeList &children,bo
}
else // normal non-linkable word
{
if (context.token->name.startsWith("#") || context.token->name.startsWith("::"))
if (context.token->name.startsWith("#"))
{
warn_doc_error(context.fileName,tokenizer.getLineNr(),"explicit link request to '%s' could not be resolved",qPrint(name));
children.append<DocWord>(this,parent,context.token->name);
Expand Down

0 comments on commit 9b513db

Please sign in to comment.