Ignore:
Timestamp:
Apr 15, 2011, 4:55:42 PM (14 years ago)
Author:
[email protected]
Message:

2011-04-15 Oliver Hunt <[email protected]>

GC allocate Structure
https://bugs.webkit.org/show_bug.cgi?id=58483

Rolling r83894 r83827 r83810 r83809 r83808 back in with
a workaround for the gcc bug seen by the gtk bots

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/BooleanObject.cpp

    r83955 r84052  
    2828const ClassInfo BooleanObject::s_info = { "Boolean", &JSWrapperObject::s_info, 0, 0 };
    2929
    30 BooleanObject::BooleanObject(JSGlobalData&, NonNullPassRefPtr<Structure> structure)
    31     : JSWrapperObject(structure)
     30BooleanObject::BooleanObject(JSGlobalData& globalData, Structure* structure)
     31    : JSWrapperObject(globalData, structure)
    3232{
    3333    ASSERT(inherits(&s_info));
Note: See TracChangeset for help on using the changeset viewer.