aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlcompiler_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-06-27 19:57:46 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-06-28 14:56:22 +0200
commitde7d66ba0295eba73d509e671fdda69a9bef39a6 (patch)
treec4f3c5caa82ffebc9bc08a320497a1d87dbd9146 /src/qml/qml/qqmlcompiler_p.h
parent7259642e35fc8a1d354697f8b1700cbadd540870 (diff)
Convert IdentifierHash to be template based
Make it a template based class, so we can store more then just integers here and replace more StringHash'es with it. Change-Id: I21442d13c6260f184bc7b63a8a58e826699f0c83 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/qml/qqmlcompiler_p.h')
-rw-r--r--src/qml/qml/qqmlcompiler_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/qqmlcompiler_p.h b/src/qml/qml/qqmlcompiler_p.h
index 55e055e182..6158ec3f6d 100644
--- a/src/qml/qml/qqmlcompiler_p.h
+++ b/src/qml/qml/qqmlcompiler_p.h
@@ -121,7 +121,7 @@ public:
QList<QByteArray> datas;
QByteArray bytecode;
QList<QQmlPropertyCache *> propertyCaches;
- QList<QV4::IdentifierIntHash> contextCaches;
+ QList<QV4::IdentifierHash<int> > contextCaches;
QList<QQmlScriptData *> scripts;
QList<QUrl> urls;