Changeset 243216 in webkit


Ignore:
Timestamp:
Mar 20, 2019 11:03:39 AM (5 years ago)
Author:
Michael Catanzaro
Message:

Unreviewed, further attempt to fix clang 3.8 build
https://bugs.webkit.org/show_bug.cgi?id=195947

  • wtf/MetaAllocator.cpp:

(WTF::MetaAllocator::allocate):

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r243215 r243216  
     12019-03-20  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        Unreviewed, further attempt to fix clang 3.8 build
     4        https://bugs.webkit.org/show_bug.cgi?id=195947
     5
     6        * wtf/MetaAllocator.cpp:
     7        (WTF::MetaAllocator::allocate):
     8
    192019-03-20  Michael Catanzaro  <mcatanzaro@igalia.com>
    210
  • trunk/Source/WTF/wtf/MetaAllocator.cpp

    r243163 r243216  
    195195        m_tracker->notify(handle.ptr());
    196196
    197     return handle;
     197    return RefPtr<MetaAllocatorHandle> { WTFMove(handle) };
    198198}
    199199
Note: See TracChangeset for help on using the changeset viewer.