Changeset 207213 in webkit


Ignore:
Timestamp:
Oct 12, 2016 2:54:14 AM (8 years ago)
Author:
Csaba Osztrogonác
Message:

Unreviewed buildfix for GCC 4.9 after r207186.
https://bugs.webkit.org/show_bug.cgi?id=163255

  • runtime/HasOwnPropertyCache.h:

(JSC::HasOwnPropertyCache::Entry::Entry):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r207186 r207213  
     12016-10-12  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Unreviewed buildfix for GCC 4.9 after r207186.
     4        https://bugs.webkit.org/show_bug.cgi?id=163255
     5
     6        * runtime/HasOwnPropertyCache.h:
     7        (JSC::HasOwnPropertyCache::Entry::Entry):
     8
    192016-10-11  Saam Barati  <sbarati@apple.com>
    210
  • trunk/Source/JavaScriptCore/runtime/HasOwnPropertyCache.h

    r207186 r207213  
    4444
    4545        Entry() = default;
     46
     47        Entry(RefPtr<UniquedStringImpl> impl, StructureID structureID, bool result)
     48            : impl(impl)
     49            , structureID(structureID)
     50            , result(result)
     51        {
     52        }
    4653
    4754        Entry& operator=(Entry&& other)
Note: See TracChangeset for help on using the changeset viewer.