summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-05-18 17:23:32 (GMT)
committerGitHub <noreply@github.com>2021-05-18 17:23:32 (GMT)
commitd440e4b9dea50f54a94ff95580b2d94cf8b930ca (patch)
treef0a94075a2380d1f66e2b6b140a256e6ffdecd20
parente6f54449c5b688cdc6647f80558d67dcaa03b30d (diff)
parent0e5b8b49e39508bc5a30d20dcaa7118f95ffd8aa (diff)
downloadDoxygen-d440e4b9dea50f54a94ff95580b2d94cf8b930ca.zip
Doxygen-d440e4b9dea50f54a94ff95580b2d94cf8b930ca.tar.gz
Doxygen-d440e4b9dea50f54a94ff95580b2d94cf8b930ca.tar.bz2
Merge pull request #8557 from albert-github/feature/issue_8556
Issue #8556 Removed bracket '(' in HTML an XML output
-rw-r--r--src/scanner.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scanner.l b/src/scanner.l
index 00fa3b4..4fb625f 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -1955,7 +1955,7 @@ NONLopt [^\n]*
//printf("Found %s\n",qPrint(yyextra->current->name));
BEGIN( ReadFuncArgType ) ;
}
- else if (yyextra->sharpCount<=0)
+ else
{
yyextra->current->name+="(";
yyextra->roundCount++;