aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4global_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4global_p.h')
-rw-r--r--src/qml/jsruntime/qv4global_p.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/qml/jsruntime/qv4global_p.h b/src/qml/jsruntime/qv4global_p.h
index ae51314e64..1127967b32 100644
--- a/src/qml/jsruntime/qv4global_p.h
+++ b/src/qml/jsruntime/qv4global_p.h
@@ -137,6 +137,10 @@ namespace Heap {
struct ErrorObject;
struct ArgumentsObject;
struct QObjectWrapper;
+
+ struct ArrayBuffer;
+ struct DataView;
+ struct TypedArray;
}
class MemoryManager;
@@ -167,6 +171,10 @@ struct Managed;
struct ExecutionEngine;
struct QObjectWrapper;
+struct ArrayBuffer;
+struct DataView;
+struct TypedArray;
+
// ReturnedValue is used to return values from runtime methods
// the type has to be a primitive type (no struct or union), so that the compiler
// will return it in a register on all platforms.