Title: [185764] trunk/Source/WTF
Revision
185764
Author
[email protected]
Date
2015-06-19 13:26:22 -0700 (Fri, 19 Jun 2015)

Log Message

Gardening: build fixes for GTK and EFL for CheckedArithmetic change.

Not reviewed.

* wtf/CheckedArithmetic.h:
(WTF::Checked::operator<):
(WTF::Checked::operator<=):
(WTF::Checked::operator>):
(WTF::Checked::operator>=):

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (185763 => 185764)


--- trunk/Source/WTF/ChangeLog	2015-06-19 19:28:52 UTC (rev 185763)
+++ trunk/Source/WTF/ChangeLog	2015-06-19 20:26:22 UTC (rev 185764)
@@ -1,5 +1,17 @@
 2015-06-19  Mark Lam  <[email protected]>
 
+        Gardening: build fixes for GTK and EFL for CheckedArithmetic change.
+
+        Not reviewed.
+
+        * wtf/CheckedArithmetic.h:
+        (WTF::Checked::operator<):
+        (WTF::Checked::operator<=):
+        (WTF::Checked::operator>):
+        (WTF::Checked::operator>=):
+
+2015-06-19  Mark Lam  <[email protected]>
+
         CheckedArithmetic's operator bool() and operator==() is broken.
         https://bugs.webkit.org/show_bug.cgi?id=146129
 

Modified: trunk/Source/WTF/wtf/CheckedArithmetic.h (185763 => 185764)


--- trunk/Source/WTF/wtf/CheckedArithmetic.h	2015-06-19 19:28:52 UTC (rev 185763)
+++ trunk/Source/WTF/wtf/CheckedArithmetic.h	2015-06-19 20:26:22 UTC (rev 185764)
@@ -641,7 +641,7 @@
         return unsafeGet() < rhs.unsafeGet();
     }
 
-    template bool operator<(T rhs) const
+    bool operator<(T rhs) const
     {
         return unsafeGet() < rhs;
     }
@@ -651,7 +651,7 @@
         return unsafeGet() <= rhs.unsafeGet();
     }
 
-    template bool operator<=(T rhs) const
+    bool operator<=(T rhs) const
     {
         return unsafeGet() <= rhs;
     }
@@ -661,7 +661,7 @@
         return unsafeGet() > rhs.unsafeGet();
     }
 
-    template bool operator>(T rhs) const
+    bool operator>(T rhs) const
     {
         return unsafeGet() > rhs;
     }
@@ -671,7 +671,7 @@
         return unsafeGet() >= rhs.unsafeGet();
     }
 
-    template bool operator>=(T rhs) const
+    bool operator>=(T rhs) const
     {
         return unsafeGet() >= rhs;
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to