Changeset 185764 in webkit


Ignore:
Timestamp:
Jun 19, 2015, 1:26:22 PM (10 years ago)
Author:
mark.lam@apple.com
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>=):

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r185755 r185764  
     12015-06-19  Mark Lam  <mark.lam@apple.com>
     2
     3        Gardening: build fixes for GTK and EFL for CheckedArithmetic change.
     4
     5        Not reviewed.
     6
     7        * wtf/CheckedArithmetic.h:
     8        (WTF::Checked::operator<):
     9        (WTF::Checked::operator<=):
     10        (WTF::Checked::operator>):
     11        (WTF::Checked::operator>=):
     12
    1132015-06-19  Mark Lam  <mark.lam@apple.com>
    214
  • trunk/Source/WTF/wtf/CheckedArithmetic.h

    r185755 r185764  
    642642    }
    643643
    644     template bool operator<(T rhs) const
     644    bool operator<(T rhs) const
    645645    {
    646646        return unsafeGet() < rhs;
     
    652652    }
    653653
    654     template bool operator<=(T rhs) const
     654    bool operator<=(T rhs) const
    655655    {
    656656        return unsafeGet() <= rhs;
     
    662662    }
    663663
    664     template bool operator>(T rhs) const
     664    bool operator>(T rhs) const
    665665    {
    666666        return unsafeGet() > rhs;
     
    672672    }
    673673
    674     template bool operator>=(T rhs) const
     674    bool operator>=(T rhs) const
    675675    {
    676676        return unsafeGet() >= rhs;
Note: See TracChangeset for help on using the changeset viewer.