Title: [196071] trunk/Source/WTF
Revision
196071
Author
[email protected]
Date
2016-02-03 10:21:01 -0800 (Wed, 03 Feb 2016)

Log Message

Fix BlockPtr's call operator
https://bugs.webkit.org/show_bug.cgi?id=153836

Reviewed by Enrica Casucci.

* wtf/BlockPtr.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (196070 => 196071)


--- trunk/Source/WTF/ChangeLog	2016-02-03 17:59:23 UTC (rev 196070)
+++ trunk/Source/WTF/ChangeLog	2016-02-03 18:21:01 UTC (rev 196071)
@@ -1,3 +1,12 @@
+2016-02-03  Anders Carlsson  <[email protected]>
+
+        Fix BlockPtr's call operator
+        https://bugs.webkit.org/show_bug.cgi?id=153836
+
+        Reviewed by Enrica Casucci.
+
+        * wtf/BlockPtr.h:
+
 2016-02-01  Said Abou-Hallawa  <[email protected]>
 
         Cache the Path instead of creating it every time it is required

Modified: trunk/Source/WTF/wtf/BlockPtr.h (196070 => 196071)


--- trunk/Source/WTF/wtf/BlockPtr.h	2016-02-03 17:59:23 UTC (rev 196070)
+++ trunk/Source/WTF/wtf/BlockPtr.h	2016-02-03 18:21:01 UTC (rev 196071)
@@ -84,7 +84,7 @@
     explicit operator bool() const { return m_block; }
     bool operator!() const { return !m_block; }
 
-    R operator()(Args&&... arguments) const
+    R operator()(Args... arguments) const
     {
         ASSERT(m_block);
         
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to