summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2017-12-25 12:08:23 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2017-12-25 12:08:23 (GMT)
commit137b2e8dd03a98e692c2f6d813b47f19f2c64e5b (patch)
tree28b5d03a556575daa1802ad7cade91326a19f01c
parent31ca2a48034dd1b0dc878dd992abb74ed5c5667f (diff)
downloadDoxygen-137b2e8dd03a98e692c2f6d813b47f19f2c64e5b.zip
Doxygen-137b2e8dd03a98e692c2f6d813b47f19f2c64e5b.tar.gz
Doxygen-137b2e8dd03a98e692c2f6d813b47f19f2c64e5b.tar.bz2
Bug 790788 - Doxygen not showing the public, non-static member function
-rw-r--r--src/scanner.l5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/scanner.l b/src/scanner.l
index 2639ddf..fd1568b 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -5029,6 +5029,11 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
}
}
}
+<SkipInits>">"{BN}*"{" { // C++11 style initializer (see bug 790788)
+ lineCount();
+ curlyCount=1;
+ BEGIN(SkipC11Inits);
+ }
<SkipInits>{ID}{BN}*"{" { // C++11 style initializer (see bug 688647)
lineCount();
curlyCount=1;