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

Log Message

REGRESSION(r243115) breaks build for clang 3.8
https://bugs.webkit.org/show_bug.cgi?id=195947

Reviewed by Chris Dumez.

* wtf/text/StringConcatenate.h:
(WTF::tryMakeStringFromAdapters):

Modified Paths

Diff

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


--- trunk/Source/WTF/ChangeLog	2019-03-20 17:45:02 UTC (rev 243214)
+++ trunk/Source/WTF/ChangeLog	2019-03-20 18:02:52 UTC (rev 243215)
@@ -1,3 +1,13 @@
+2019-03-20  Michael Catanzaro  <[email protected]>
+
+        REGRESSION(r243115) breaks build for clang 3.8
+        https://bugs.webkit.org/show_bug.cgi?id=195947
+
+        Reviewed by Chris Dumez.
+
+        * wtf/text/StringConcatenate.h:
+        (WTF::tryMakeStringFromAdapters):
+
 2019-03-20  Tim Horton  <[email protected]>
 
         Add an platform-driven spell-checking mechanism

Modified: trunk/Source/WTF/wtf/text/StringConcatenate.h (243214 => 243215)


--- trunk/Source/WTF/wtf/text/StringConcatenate.h	2019-03-20 17:45:02 UTC (rev 243214)
+++ trunk/Source/WTF/wtf/text/StringConcatenate.h	2019-03-20 18:02:52 UTC (rev 243215)
@@ -278,7 +278,7 @@
 
         makeStringAccumulator(buffer, adapter, adapters...);
 
-        return resultImpl;
+        return String { WTFMove(resultImpl) };
     }
 
     UChar* buffer;
@@ -288,7 +288,7 @@
 
     makeStringAccumulator(buffer, adapter, adapters...);
 
-    return resultImpl;
+    return String { WTFMove(resultImpl) };
 }
 
 template<typename... StringTypes>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to