summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-01-12 10:53:09 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-01-12 10:53:09 (GMT)
commit09a5fc198a98d697d3e50c1c76392b8373f1af12 (patch)
treeb84c114d0f939af02288b969a05593a1de6fa191 /src
parenta642629761d43d53f3ade41c78530d0c7228a84d (diff)
downloadDoxygen-09a5fc198a98d697d3e50c1c76392b8373f1af12.zip
Doxygen-09a5fc198a98d697d3e50c1c76392b8373f1af12.tar.gz
Doxygen-09a5fc198a98d697d3e50c1c76392b8373f1af12.tar.bz2
Fixed problem handling Obj-C protocol list when proceeded by a newline
Diffstat (limited to 'src')
-rw-r--r--src/scanner.l3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/scanner.l b/src/scanner.l
index 5d6845e..89ebb43 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -5771,7 +5771,8 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
specName = &current->name;
BEGIN ( Specialization );
}
-<Bases>"<" {
+<Bases>{BN}*"<" {
+ lineCount();
sharpCount=1;
roundCount=0;
lastSkipSharpContext = YY_START;