aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlvme_p.h
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2012-08-26 17:15:00 +0200
committerQt by Nokia <qt-info@nokia.com>2012-09-13 19:52:51 +0200
commit50813c8cc36716a579b2e09d4dae71d2f23402c8 (patch)
treedb8591d906d50a9a5deed156e1b273d754f515c6 /src/qml/qml/qqmlvme_p.h
parent400ff21dbd0edeec2b1be202961e146f76b9fbf8 (diff)
Make the instruction table be const
It's never going to be modified, so it should be const. Change-Id: Ibc3bac0583f72ccbf7caa69aeab029bae03d3cdd Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
Diffstat (limited to 'src/qml/qml/qqmlvme_p.h')
-rw-r--r--src/qml/qml/qqmlvme_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/qml/qqmlvme_p.h b/src/qml/qml/qqmlvme_p.h
index 4d49b79259..ab9d1fa792 100644
--- a/src/qml/qml/qqmlvme_p.h
+++ b/src/qml/qml/qqmlvme_p.h
@@ -132,13 +132,13 @@ private:
QObject *run(QList<QQmlError> *errors, const Interrupt &
#ifdef QML_THREADED_VME_INTERPRETER
- , void ***storeJumpTable = 0
+ , void *const**storeJumpTable = 0
#endif
);
v8::Persistent<v8::Object> run(QQmlContextData *, QQmlScriptData *);
#ifdef QML_THREADED_VME_INTERPRETER
- static void **instructionJumpTable();
+ static void *const*instructionJumpTable();
friend class QQmlCompiledData;
#endif