Title: [261005] trunk/Source/_javascript_Core
- Revision
- 261005
- Author
- sbar...@apple.com
- Date
- 2020-05-01 10:10:59 -0700 (Fri, 01 May 2020)
Log Message
Unreviewed. Speculative build fix for watchOS build.
* runtime/ArrayPrototype.cpp:
(JSC::shift):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (261004 => 261005)
--- trunk/Source/_javascript_Core/ChangeLog 2020-05-01 17:05:23 UTC (rev 261004)
+++ trunk/Source/_javascript_Core/ChangeLog 2020-05-01 17:10:59 UTC (rev 261005)
@@ -1,3 +1,10 @@
+2020-05-01 Saam Barati <sbar...@apple.com>
+
+ Unreviewed. Speculative build fix for watchOS build.
+
+ * runtime/ArrayPrototype.cpp:
+ (JSC::shift):
+
2020-05-01 Alexey Shvayka <shvaikal...@gmail.com>
[WebIDL] Interface prototype objects should define @@toStringTag
Modified: trunk/Source/_javascript_Core/runtime/ArrayPrototype.cpp (261004 => 261005)
--- trunk/Source/_javascript_Core/runtime/ArrayPrototype.cpp 2020-05-01 17:05:23 UTC (rev 261004)
+++ trunk/Source/_javascript_Core/runtime/ArrayPrototype.cpp 2020-05-01 17:10:59 UTC (rev 261005)
@@ -334,7 +334,7 @@
if (isJSArray(thisObj)) {
JSArray* array = asArray(thisObj);
- uint32_t header32 = header;
+ uint32_t header32 = static_cast<uint32_t>(header);
ASSERT(header32 == header);
if (array->length() == length && array->shiftCount<shiftCountMode>(globalObject, header32, count))
return;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes