summaryrefslogtreecommitdiffstats
path: root/src/commentscan.l
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-10-28 20:56:03 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-10-29 21:54:21 (GMT)
commitd38df57916d5902abc9dbaf5891c14898ce675da (patch)
treee546dc1ab7076ec0726259ebed973130af9e83ec /src/commentscan.l
parent94e8899c8013cf99a6f90d1c8f0a7815ccc3e1c3 (diff)
downloadDoxygen-d38df57916d5902abc9dbaf5891c14898ce675da.zip
Doxygen-d38df57916d5902abc9dbaf5891c14898ce675da.tar.gz
Doxygen-d38df57916d5902abc9dbaf5891c14898ce675da.tar.bz2
Replaced QList<Grouping> with std::vector<Grouping>
Diffstat (limited to 'src/commentscan.l')
-rw-r--r--src/commentscan.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commentscan.l b/src/commentscan.l
index eef76d6..29bc1d9 100644
--- a/src/commentscan.l
+++ b/src/commentscan.l
@@ -2141,8 +2141,8 @@ RCSTAG "$"{ID}":"[^\n$]+"$"
/* ----- handle argument of ingroup command ------- */
<InGroupParam>{LABELID} { // group id
- current->groups->append(
- new Grouping(yytext, Grouping::GROUPING_INGROUP)
+ current->groups.push_back(
+ Grouping(yytext, Grouping::GROUPING_INGROUP)
);
inGroupParamFound=TRUE;
}