summaryrefslogtreecommitdiff
path: root/pcr/qtwebkit/gcc-5.patch
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2018-02-02 15:52:21 +0100
committerAndreas Grapentin <andreas@grapentin.org>2018-02-02 15:52:21 +0100
commiteabb225e7189c643c9cb7942eabb6350cdab6954 (patch)
treeaf38adc6b3258b53d83de656ddce22a2efafcf84 /pcr/qtwebkit/gcc-5.patch
parent3b61ebb77ffe4e2ec8ea355106dc08bc82f45333 (diff)
pcr/qtwebkit: added
Diffstat (limited to 'pcr/qtwebkit/gcc-5.patch')
-rw-r--r--pcr/qtwebkit/gcc-5.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/pcr/qtwebkit/gcc-5.patch b/pcr/qtwebkit/gcc-5.patch
new file mode 100644
index 000000000..07b3f7360
--- /dev/null
+++ b/pcr/qtwebkit/gcc-5.patch
@@ -0,0 +1,13 @@
+--- webkit-qtwebkit-23/Source/JavaScriptCore/runtime/JSObject.cpp.gcc5 2014-09-24 06:42:05.000000000 -0500
++++ webkit-qtwebkit-23/Source/JavaScriptCore/runtime/JSObject.cpp 2015-03-20 08:15:53.192778375 -0500
+@@ -1922,6 +1922,10 @@ void JSObject::putByIndexBeyondVectorLen
+ }
+ }
+
++template void JSObject::putByIndexBeyondVectorLengthWithoutAttributes<ContiguousShape>(ExecState* exec, unsigned i, JSValue value);
++template void JSObject::putByIndexBeyondVectorLengthWithoutAttributes<DoubleShape>(ExecState* exec, unsigned i, JSValue value);
++template void JSObject::putByIndexBeyondVectorLengthWithoutAttributes<Int32Shape>(ExecState* exec, unsigned i, JSValue value);
++
+ void JSObject::putByIndexBeyondVectorLengthWithArrayStorage(ExecState* exec, unsigned i, JSValue value, bool shouldThrow, ArrayStorage* storage)
+ {
+ JSGlobalData& globalData = exec->globalData();