Commit 1e7e76af authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 700385 - Incorrectly parsed Q_PROPERTY with 'unsigned int' type

parent 3916139c
...@@ -2176,7 +2176,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}) ...@@ -2176,7 +2176,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
unput(';'); unput(';');
BEGIN(FindMembers); BEGIN(FindMembers);
} }
<QtPropType>"const"|"volatile" { <QtPropType>"const"|"volatile"|"unsigned"|"signed" {
current->type+=yytext; current->type+=yytext;
} }
<QtPropType>{B}+ { <QtPropType>{B}+ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment