Title: [113365] trunk/Source/_javascript_Core
- Revision
- 113365
- Author
- [email protected]
- Date
- 2012-04-05 13:21:15 -0700 (Thu, 05 Apr 2012)
Log Message
Fix 32-bit build.
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/API/APICast.h (113364 => 113365)
--- trunk/Source/_javascript_Core/API/APICast.h 2012-04-05 20:14:18 UTC (rev 113364)
+++ trunk/Source/_javascript_Core/API/APICast.h 2012-04-05 20:21:15 UTC (rev 113365)
@@ -69,7 +69,7 @@
if (!jsCell)
return JSC::JSValue();
if (jsCell->isAPIValueWrapper())
- return jsCast<JSC::JSAPIValueWrapper*>(jsCell)->value();
+ return JSC::jsCast<JSC::JSAPIValueWrapper*>(jsCell)->value();
return jsCell;
#else
return JSC::JSValue::decode(reinterpret_cast<JSC::EncodedJSValue>(const_cast<OpaqueJSValue*>(v)));
Modified: trunk/Source/_javascript_Core/ChangeLog (113364 => 113365)
--- trunk/Source/_javascript_Core/ChangeLog 2012-04-05 20:14:18 UTC (rev 113364)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-04-05 20:21:15 UTC (rev 113365)
@@ -1,5 +1,12 @@
2012-04-05 Oliver Hunt <[email protected]>
+ Fix 32-bit build.
+
+ * API/APICast.h:
+ (toJS):
+
+2012-04-05 Oliver Hunt <[email protected]>
+
Replace static_cast with jsCast when casting JSCell subclasses in JSC
https://bugs.webkit.org/show_bug.cgi?id=83307
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes