Title: [137017] trunk/Source/_javascript_Core
- Revision
- 137017
- Author
- [email protected]
- Date
- 2012-12-07 21:35:51 -0800 (Fri, 07 Dec 2012)
Log Message
Add missing forward declaration for JSC::ArrayAllocationProfile
https://bugs.webkit.org/show_bug.cgi?id=104425
Patch by Jonathan Liu <[email protected]> on 2012-12-07
Reviewed by Kentaro Hara.
The header for the JSC::ArrayConstructor class is missing a forward
declaration for the JSC::ArrayAllocationProfile class which causes
compilation to fail when compiling with MinGW-w64.
* runtime/ArrayConstructor.h:
(JSC):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (137016 => 137017)
--- trunk/Source/_javascript_Core/ChangeLog 2012-12-08 05:17:45 UTC (rev 137016)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-12-08 05:35:51 UTC (rev 137017)
@@ -1,5 +1,19 @@
2012-12-07 Jonathan Liu <[email protected]>
+ Add missing forward declaration for JSC::ArrayAllocationProfile
+ https://bugs.webkit.org/show_bug.cgi?id=104425
+
+ Reviewed by Kentaro Hara.
+
+ The header for the JSC::ArrayConstructor class is missing a forward
+ declaration for the JSC::ArrayAllocationProfile class which causes
+ compilation to fail when compiling with MinGW-w64.
+
+ * runtime/ArrayConstructor.h:
+ (JSC):
+
+2012-12-07 Jonathan Liu <[email protected]>
+
Add missing const qualifier to JSC::CodeBlock::getJITType()
https://bugs.webkit.org/show_bug.cgi?id=104424
Modified: trunk/Source/_javascript_Core/runtime/ArrayConstructor.h (137016 => 137017)
--- trunk/Source/_javascript_Core/runtime/ArrayConstructor.h 2012-12-08 05:17:45 UTC (rev 137016)
+++ trunk/Source/_javascript_Core/runtime/ArrayConstructor.h 2012-12-08 05:35:51 UTC (rev 137017)
@@ -25,6 +25,7 @@
namespace JSC {
+class ArrayAllocationProfile;
class ArrayPrototype;
class JSArray;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes