diff options
Diffstat (limited to 'Source/JavaScriptCore')
-rw-r--r-- | Source/JavaScriptCore/ChangeLog | 14 | ||||
-rw-r--r-- | Source/JavaScriptCore/runtime/ArrayConstructor.h | 1 |
2 files changed, 15 insertions, 0 deletions
diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog index 798086160..e9ddd3906 100644 --- a/Source/JavaScriptCore/ChangeLog +++ b/Source/JavaScriptCore/ChangeLog @@ -1,5 +1,19 @@ 2012-12-07 Jonathan Liu <net147@gmail.com> + 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 <net147@gmail.com> + Add missing const qualifier to JSC::CodeBlock::getJITType() https://bugs.webkit.org/show_bug.cgi?id=104424 diff --git a/Source/JavaScriptCore/runtime/ArrayConstructor.h b/Source/JavaScriptCore/runtime/ArrayConstructor.h index 96860b0fc..f9f35c491 100644 --- a/Source/JavaScriptCore/runtime/ArrayConstructor.h +++ b/Source/JavaScriptCore/runtime/ArrayConstructor.h @@ -25,6 +25,7 @@ namespace JSC { +class ArrayAllocationProfile; class ArrayPrototype; class JSArray; |