summaryrefslogtreecommitdiffstats
path: root/src/scanner.l
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2018-11-02 19:13:59 (GMT)
committerJoe George <joe@zeroc.com>2018-11-02 19:13:59 (GMT)
commitd5fd75574bc816e95f1bcdcdb8e2121949d484d8 (patch)
treea77df06bba85bb5fe2447b9d64074f493b5d3416 /src/scanner.l
parent1bbf1a37dfc67331a72918df3580818e7f21d0ae (diff)
downloadDoxygen-d5fd75574bc816e95f1bcdcdb8e2121949d484d8.zip
Doxygen-d5fd75574bc816e95f1bcdcdb8e2121949d484d8.tar.gz
Doxygen-d5fd75574bc816e95f1bcdcdb8e2121949d484d8.tar.bz2
Fix scanner.l for Slice
Diffstat (limited to 'src/scanner.l')
-rw-r--r--src/scanner.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scanner.l b/src/scanner.l
index cde0ade..1642fec 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -6414,7 +6414,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
/* ---- Slice-specific rules ------ */
-<SliceSequence>{SCOPEID} {
+<SliceSequence>{SCOPENAME} {
if (current->spec&Entry::Local)
{
current->type = "local ";
@@ -6443,7 +6443,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
BEGIN(FindMembers);
}
-<SliceDictionary>{SCOPEID}{BN}*","{BN}*{SCOPEID} {
+<SliceDictionary>{SCOPENAME}{BN}*","{BN}*{SCOPENAME} {
lineCount();
if (current->spec&Entry::Local)
{