Title: [243216] trunk/Source/WTF
Revision
243216
Author
[email protected]
Date
2019-03-20 11:03:39 -0700 (Wed, 20 Mar 2019)

Log 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):

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (243215 => 243216)


--- trunk/Source/WTF/ChangeLog	2019-03-20 18:02:52 UTC (rev 243215)
+++ trunk/Source/WTF/ChangeLog	2019-03-20 18:03:39 UTC (rev 243216)
@@ -1,5 +1,13 @@
 2019-03-20  Michael Catanzaro  <[email protected]>
 
+        Unreviewed, further attempt to fix clang 3.8 build
+        https://bugs.webkit.org/show_bug.cgi?id=195947
+
+        * wtf/MetaAllocator.cpp:
+        (WTF::MetaAllocator::allocate):
+
+2019-03-20  Michael Catanzaro  <[email protected]>
+
         REGRESSION(r243115) breaks build for clang 3.8
         https://bugs.webkit.org/show_bug.cgi?id=195947
 

Modified: trunk/Source/WTF/wtf/MetaAllocator.cpp (243215 => 243216)


--- trunk/Source/WTF/wtf/MetaAllocator.cpp	2019-03-20 18:02:52 UTC (rev 243215)
+++ trunk/Source/WTF/wtf/MetaAllocator.cpp	2019-03-20 18:03:39 UTC (rev 243216)
@@ -194,7 +194,7 @@
     if (UNLIKELY(!!m_tracker))
         m_tracker->notify(handle.ptr());
 
-    return handle;
+    return RefPtr<MetaAllocatorHandle> { WTFMove(handle) };
 }
 
 MetaAllocator::Statistics MetaAllocator::currentStatistics()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to