summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-03-29 21:03:47 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-03-29 21:03:47 (GMT)
commit77ba85cf74d85ebf68c69d7d42e33839902e2f97 (patch)
tree7ce75bf311af3f92b3d3531d3d728f02cc83f801 /src
parent29838d08c7bbb6821d49fa88d6ee2c10ae77fc97 (diff)
downloadDoxygen-77ba85cf74d85ebf68c69d7d42e33839902e2f97.zip
Doxygen-77ba85cf74d85ebf68c69d7d42e33839902e2f97.tar.gz
Doxygen-77ba85cf74d85ebf68c69d7d42e33839902e2f97.tar.bz2
Fix for compile issue on Travis-CI
Diffstat (limited to 'src')
-rw-r--r--src/pre.l3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pre.l b/src/pre.l
index e123807..f955cc4 100644
--- a/src/pre.l
+++ b/src/pre.l
@@ -3215,7 +3215,8 @@ static void initPredefined(yyscan_t yyscanner,const char *fileName)
{
if (l>0) // see bug375037
{
- argMap.emplace(ds.mid(pi,l),count++);
+ argMap.emplace(ds.mid(pi,l).data(),count);
+ count++;
i=pi+l;
}
else