Title: [204452] trunk/Source/WTF
Revision
204452
Author
m...@apple.com
Date
2016-08-13 18:29:50 -0700 (Sat, 13 Aug 2016)

Log Message

Build fix follow-up to r204433.

* wtf/StdLibExtras.h:
(WTF::makeVisitor): Don’t use an auto return type.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (204451 => 204452)


--- trunk/Source/WTF/ChangeLog	2016-08-14 00:10:22 UTC (rev 204451)
+++ trunk/Source/WTF/ChangeLog	2016-08-14 01:29:50 UTC (rev 204452)
@@ -1,3 +1,10 @@
+2016-08-13  Dan Bernstein  <m...@apple.com>
+
+        Build fix follow-up to r204433.
+
+        * wtf/StdLibExtras.h:
+        (WTF::makeVisitor): Don’t use an auto return type.
+
 2016-08-12  Sam Weinig  <s...@webkit.org>
 
         Make variant only available when compiling for C++14 or greater

Modified: trunk/Source/WTF/wtf/StdLibExtras.h (204451 => 204452)


--- trunk/Source/WTF/wtf/StdLibExtras.h	2016-08-14 00:10:22 UTC (rev 204451)
+++ trunk/Source/WTF/wtf/StdLibExtras.h	2016-08-14 01:29:50 UTC (rev 204452)
@@ -335,7 +335,7 @@
 };
  
 template <class... F>
-auto makeVisitor(F... f)
+Visitor<F...> makeVisitor(F... f)
 {
     return Visitor<F...>(f...);
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to