[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.19-706-ge5415e9

hausmann at webkit.org hausmann at webkit.org
Thu Feb 4 21:32:01 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit 154f625aa5770bf90790a8b0983e2f136253099e
Author: hausmann at webkit.org <hausmann at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jan 29 09:23:32 2010 +0000

    Rubber-stamped by Maciej Stachowiak.
    
    Fix the ARM build.
    
    * runtime/JSNumberCell.h:
    (JSC::JSNumberCell::createStructure): Call the right Structure::create overload.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54050 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index b39f98e..f427df0 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,12 @@
+2010-01-29  Simon Hausmann  <simon.hausmann at nokia.com>
+
+        Rubber-stamped by Maciej Stachowiak.
+
+        Fix the ARM build.
+
+        * runtime/JSNumberCell.h:
+        (JSC::JSNumberCell::createStructure): Call the right Structure::create overload.
+
 2010-01-28  Kevin Ollivier  <kevino at theolliviers.com>
 
         [wx] Build fix for MSW, use ThreadingWin.cpp as the Windows pthreads implementation
diff --git a/JavaScriptCore/runtime/JSNumberCell.h b/JavaScriptCore/runtime/JSNumberCell.h
index e9e2470..bcb506b 100644
--- a/JavaScriptCore/runtime/JSNumberCell.h
+++ b/JavaScriptCore/runtime/JSNumberCell.h
@@ -76,7 +76,7 @@ namespace JSC {
             return globalData->heap.allocateNumber(size);
         }
 
-        static PassRefPtr<Structure> createStructure(JSValue proto) { return Structure::create(proto, TypeInfo(NumberType, OverridesGetOwnPropertySlot | NeedsThisConversion)); }
+        static PassRefPtr<Structure> createStructure(JSValue proto) { return Structure::create(proto, TypeInfo(NumberType, OverridesGetOwnPropertySlot | NeedsThisConversion), AnonymousSlotCount); }
 
     private:
         JSNumberCell(JSGlobalData* globalData, double value)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list