summaryrefslogtreecommitdiffstats
path: root/src/commentscan.l
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-08-02 09:40:00 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-08-02 09:40:00 (GMT)
commit7a10b6e784bf1ed882157471038e174df850b06c (patch)
treed6af0bbe791ca3c30a300e74b0ff04f18a9ac2af /src/commentscan.l
parentf16a63d6d5d9fd11a2f1c57bdfad7f1d4b175f0e (diff)
downloadDoxygen-7a10b6e784bf1ed882157471038e174df850b06c.zip
Doxygen-7a10b6e784bf1ed882157471038e174df850b06c.tar.gz
Doxygen-7a10b6e784bf1ed882157471038e174df850b06c.tar.bz2
Regression: unbalanced grouping commands
Regression on #7122 (and #7115 / #7116). When having multiple consecutive `\name` sections the warning "unbalanced grouping commands" appears Analogous to the open command also the close command needs an implicit argument.
Diffstat (limited to 'src/commentscan.l')
-rw-r--r--src/commentscan.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commentscan.l b/src/commentscan.l
index a52821c..933bd59 100644
--- a/src/commentscan.l
+++ b/src/commentscan.l
@@ -2545,7 +2545,7 @@ static bool handleName(const QCString &, const QCStringList &)
BEGIN( NameParam );
if (!Doxygen::docGroup.isEmpty()) // end of previous member group
{
- Doxygen::docGroup.close(current,yyFileName,yyLineNr,TRUE);
+ Doxygen::docGroup.close(current,yyFileName,yyLineNr,TRUE,true);
}
}
return stop;