summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-12-20 14:24:04 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-12-20 14:24:04 (GMT)
commitf836266a4538153a1164642e168bb04c529a4d51 (patch)
treeddbd361da2d3e310e2f6575bbc2aa7e928b20399 /src
parent09c4e990e4e214900e613343fb9bfbbb08f1bc53 (diff)
downloadDoxygen-f836266a4538153a1164642e168bb04c529a4d51.zip
Doxygen-f836266a4538153a1164642e168bb04c529a4d51.tar.gz
Doxygen-f836266a4538153a1164642e168bb04c529a4d51.tar.bz2
Bug 757812 - Doxygen do not support comparison angle bracket in template
Diffstat (limited to 'src')
-rw-r--r--src/scanner.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scanner.l b/src/scanner.l
index 2cacccd..d603824 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -5332,8 +5332,8 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
}
}
<ClassTemplSpec>"<" {
- current->name += yytext;
- sharpCount++;
+ current->name += yytext;
+ if (roundCount==0) sharpCount++;
}
<ClassTemplSpec>. {
current->name += yytext;