aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4function_p.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@qt.io>2018-05-28 15:57:26 +0200
committerSimon Hausmann <simon.hausmann@qt.io>2018-05-28 19:15:55 +0000
commit04ad4f2d9c8d5c93c33f873a3b8a5a86b7489634 (patch)
tree28717542421a0ca4490fb6cf883bc0a6523fedf8 /src/qml/jsruntime/qv4function_p.h
parentef75c3017e75135fb3454f67c0778e9a89165cd2 (diff)
Minor cleanup with bytecode pointer types
Even though we consider the bytecode to be a sequence of unsigned bytes, we store it as const char * (so unsigned except on arm) everywhere, because that makes it convenient to work with QByteArray's constData(). By using const char * consistently we can get rid of at least one more reinterpret_cast. Change-Id: I7a803e4201381c39eec2fdc6497d9bf36a1c2b6b Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4function_p.h')
-rw-r--r--src/qml/jsruntime/qv4function_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4function_p.h b/src/qml/jsruntime/qv4function_p.h
index 06a3bda0a8..ff2d86b89f 100644
--- a/src/qml/jsruntime/qv4function_p.h
+++ b/src/qml/jsruntime/qv4function_p.h
@@ -72,7 +72,7 @@ struct Q_QML_EXPORT Function {
return Moth::VME::exec(this, thisObject, argv, argc, context);
}
- const uchar *codeData;
+ const char *codeData;
typedef ReturnedValue (*JittedCode)(CppStackFrame *, ExecutionEngine *);
JittedCode jittedCode;