summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-08-01 19:34:28 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-08-01 19:34:28 (GMT)
commite2f6973ca0c8d5ab1f5bd28a3cd89b58fff13d71 (patch)
treebb42d2249cf1dd60fc07f70d1a17d89dc4e8d934 /src
parent509359b671b415c9e13ea62530b23d57b4d57bc8 (diff)
downloadDoxygen-e2f6973ca0c8d5ab1f5bd28a3cd89b58fff13d71.zip
Doxygen-e2f6973ca0c8d5ab1f5bd28a3cd89b58fff13d71.tar.gz
Doxygen-e2f6973ca0c8d5ab1f5bd28a3cd89b58fff13d71.tar.bz2
Bug 705190 - Incorrectly parsed Q_PROPERTY with 'long long' or 'long int' type
Diffstat (limited to 'src')
-rw-r--r--src/scanner.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scanner.l b/src/scanner.l
index 8b4722a..7c21a43 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -2171,7 +2171,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
unput(';');
BEGIN(FindMembers);
}
-<QtPropType>"const"|"volatile"|"unsigned"|"signed" {
+<QtPropType>"const"|"volatile"|"unsigned"|"signed"|"long"|"short" {
current->type+=yytext;
}
<QtPropType>{B}+ {