aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/qv4compiler_p.h
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@qt.io>2017-07-18 15:43:11 +0200
committerErik Verbruggen <erik.verbruggen@qt.io>2017-08-02 13:36:09 +0000
commit26532c66ee78d1aefbd3d02d7d149699f1c0ed95 (patch)
tree5aa6625d5f9c6bcd349c1d91f71308a133992893 /src/qml/compiler/qv4compiler_p.h
parent79f4a4135cb96f8ee55ed85e7a58d0a32f81ee04 (diff)
Fix various signed/unsigned warnings
Change-Id: I9f4a5a8470c1abc6b07a28c71fdad0d208e1fea1 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/qml/compiler/qv4compiler_p.h')
-rw-r--r--src/qml/compiler/qv4compiler_p.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/qml/compiler/qv4compiler_p.h b/src/qml/compiler/qv4compiler_p.h
index 3bab7a72cf..af71415a45 100644
--- a/src/qml/compiler/qv4compiler_p.h
+++ b/src/qml/compiler/qv4compiler_p.h
@@ -105,14 +105,14 @@ struct Q_QML_PRIVATE_EXPORT JSUnitGenerator {
int getStringId(const QString &string) const { return stringTable.getStringId(string); }
QString stringForIndex(int index) const { return stringTable.stringForIndex(index); }
- uint registerGetterLookup(const QString &name);
- uint registerGetterLookup(int nameIndex);
- uint registerSetterLookup(const QString &name);
- uint registerSetterLookup(int nameIndex);
- uint registerGlobalGetterLookup(const QString &name);
- uint registerGlobalGetterLookup(int nameIndex);
- uint registerIndexedGetterLookup();
- uint registerIndexedSetterLookup();
+ int registerGetterLookup(const QString &name);
+ int registerGetterLookup(int nameIndex);
+ int registerSetterLookup(const QString &name);
+ int registerSetterLookup(int nameIndex);
+ int registerGlobalGetterLookup(const QString &name);
+ int registerGlobalGetterLookup(int nameIndex);
+ int registerIndexedGetterLookup();
+ int registerIndexedSetterLookup();
int registerRegExp(QQmlJS::AST::RegExpLiteral *regexp);