summaryrefslogtreecommitdiffstats
path: root/src/scanner.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-05-30 19:54:46 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-05-30 19:54:46 (GMT)
commit1e7e76afce339b779c7c44bf3640b277586c1a5e (patch)
tree48fc39b89ef9cdc28dfc88e39ab6399089d47761 /src/scanner.l
parent3916139c2dc69ee96def9b1582ae93555e3a50e8 (diff)
downloadDoxygen-1e7e76afce339b779c7c44bf3640b277586c1a5e.zip
Doxygen-1e7e76afce339b779c7c44bf3640b277586c1a5e.tar.gz
Doxygen-1e7e76afce339b779c7c44bf3640b277586c1a5e.tar.bz2
Bug 700385 - Incorrectly parsed Q_PROPERTY with 'unsigned int' type
Diffstat (limited to 'src/scanner.l')
-rw-r--r--src/scanner.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scanner.l b/src/scanner.l
index 9a3d27f..4ae410e 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -2176,7 +2176,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
unput(';');
BEGIN(FindMembers);
}
-<QtPropType>"const"|"volatile" {
+<QtPropType>"const"|"volatile"|"unsigned"|"signed" {
current->type+=yytext;
}
<QtPropType>{B}+ {