Title: [161797] trunk/Source/WTF
Revision
161797
Author
wei...@apple.com
Date
2014-01-11 20:33:34 -0800 (Sat, 11 Jan 2014)

Log Message

Fix the EFL build.

* wtf/IteratorAdaptors.h:
(WTF::TransformIterator::operator*):

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (161796 => 161797)


--- trunk/Source/WTF/ChangeLog	2014-01-12 04:20:13 UTC (rev 161796)
+++ trunk/Source/WTF/ChangeLog	2014-01-12 04:33:34 UTC (rev 161797)
@@ -1,5 +1,12 @@
 2014-01-11  Sam Weinig  <s...@webkit.org>
 
+        Fix the EFL build.
+
+        * wtf/IteratorAdaptors.h:
+        (WTF::TransformIterator::operator*):
+
+2014-01-11  Sam Weinig  <s...@webkit.org>
+
         Add support for null StringViews
         https://bugs.webkit.org/show_bug.cgi?id=126827
 

Modified: trunk/Source/WTF/wtf/IteratorAdaptors.h (161796 => 161797)


--- trunk/Source/WTF/wtf/IteratorAdaptors.h	2014-01-12 04:20:13 UTC (rev 161796)
+++ trunk/Source/WTF/wtf/IteratorAdaptors.h	2014-01-12 04:33:34 UTC (rev 161797)
@@ -87,7 +87,7 @@
         return *this;
     }
 
-    const decltype(std::declval<Transform>()(*std::declval<Iterator>())) operator*() const
+    decltype(std::declval<Transform>()(*std::declval<Iterator>())) operator*() const
     {
         return m_transform(*m_iter);
     }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to