Title: [251652] trunk/Source/_javascript_Core
Revision
251652
Author
hironori.fu...@sony.com
Date
2019-10-28 03:31:19 -0700 (Mon, 28 Oct 2019)

Log Message

[Windows][Clang] error LNK2001: unresolved external symbol "void * __cdecl JSC::allocateCell<class JSC::JSGenericTypedArrayView<struct JSC::Float32Adaptor> >(class JSC::Heap &,unsigned __int64)"
https://bugs.webkit.org/show_bug.cgi?id=203483

Unreviewed build fix for clang-cl builds.

* runtime/JSGenericTypedArrayViewInlines.h: Added #include "JSCellInlines.h".

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (251651 => 251652)


--- trunk/Source/_javascript_Core/ChangeLog	2019-10-28 10:12:43 UTC (rev 251651)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-10-28 10:31:19 UTC (rev 251652)
@@ -1,3 +1,12 @@
+2019-10-28  Fujii Hironori  <hironori.fu...@sony.com>
+
+        [Windows][Clang] error LNK2001: unresolved external symbol "void * __cdecl JSC::allocateCell<class JSC::JSGenericTypedArrayView<struct JSC::Float32Adaptor> >(class JSC::Heap &,unsigned __int64)"
+        https://bugs.webkit.org/show_bug.cgi?id=203483
+
+        Unreviewed build fix for clang-cl builds.
+
+        * runtime/JSGenericTypedArrayViewInlines.h: Added #include "JSCellInlines.h".
+
 2019-10-26  Chris Lord  <cl...@igalia.com>
 
         Put OffscreenCanvas behind a build flag

Modified: trunk/Source/_javascript_Core/runtime/JSGenericTypedArrayViewInlines.h (251651 => 251652)


--- trunk/Source/_javascript_Core/runtime/JSGenericTypedArrayViewInlines.h	2019-10-28 10:12:43 UTC (rev 251651)
+++ trunk/Source/_javascript_Core/runtime/JSGenericTypedArrayViewInlines.h	2019-10-28 10:31:19 UTC (rev 251652)
@@ -30,6 +30,7 @@
 #include "Error.h"
 #include "ExceptionHelpers.h"
 #include "JSArrayBuffer.h"
+#include "JSCellInlines.h"
 #include "JSGenericTypedArrayView.h"
 #include "TypeError.h"
 #include "TypedArrays.h"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to