Commit a558d2e6 authored by hausmann@webkit.org's avatar hausmann@webkit.org

Rubber-stamped by Maciej Stachowiak.

Fix the ARM build.

* runtime/JSNumberCell.h:
(JSC::JSNumberCell::createStructure): Call the right Structure::create overload.

git-svn-id: svn://svn.chromium.org/blink/trunk@54050 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 834cc528
2010-01-29 Simon Hausmann <simon.hausmann@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@theolliviers.com> 2010-01-28 Kevin Ollivier <kevino@theolliviers.com>
[wx] Build fix for MSW, use ThreadingWin.cpp as the Windows pthreads implementation [wx] Build fix for MSW, use ThreadingWin.cpp as the Windows pthreads implementation
......
...@@ -76,7 +76,7 @@ namespace JSC { ...@@ -76,7 +76,7 @@ namespace JSC {
return globalData->heap.allocateNumber(size); 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: private:
JSNumberCell(JSGlobalData* globalData, double value) JSNumberCell(JSGlobalData* globalData, double value)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment