diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-01-12 10:53:09 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-01-12 10:53:09 (GMT) |
commit | 09a5fc198a98d697d3e50c1c76392b8373f1af12 (patch) | |
tree | b84c114d0f939af02288b969a05593a1de6fa191 | |
parent | a642629761d43d53f3ade41c78530d0c7228a84d (diff) | |
download | Doxygen-09a5fc198a98d697d3e50c1c76392b8373f1af12.zip Doxygen-09a5fc198a98d697d3e50c1c76392b8373f1af12.tar.gz Doxygen-09a5fc198a98d697d3e50c1c76392b8373f1af12.tar.bz2 |
Fixed problem handling Obj-C protocol list when proceeded by a newline
-rw-r--r-- | src/scanner.l | 3 |
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 = ¤t->name; BEGIN ( Specialization ); } -<Bases>"<" { +<Bases>{BN}*"<" { + lineCount(); sharpCount=1; roundCount=0; lastSkipSharpContext = YY_START; |