Ignore:
Timestamp:
Mar 21, 2016, 10:17:30 AM (9 years ago)
Author:
[email protected]
Message:

Fixed compilation with GCC 4.8.
https://bugs.webkit.org/show_bug.cgi?id=155698

Patch by Konstantin Tokarev <Konstantin Tokarev> on 2016-03-21
Reviewed by Alexey Proskuryakov.

GCC 4.8 does not allow aggregate initialization for type with deleted
constructor, see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52707.

  • dfg/DFGCSEPhase.cpp: Added ctor for ImpureDataSlot.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/dfg/DFGCSEPhase.cpp

    r198376 r198490  
    5656    WTF_MAKE_FAST_ALLOCATED;
    5757public:
     58    ImpureDataSlot(HeapLocation key, LazyNode value, unsigned hash)
     59        : key(key), value(value), hash(hash)
     60    { }
     61
    5862    HeapLocation key;
    5963    LazyNode value;
Note: See TracChangeset for help on using the changeset viewer.