Changeset 185764 in webkit
- Timestamp:
- Jun 19, 2015, 1:26:22 PM (10 years ago)
- Location:
- trunk/Source/WTF
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WTF/ChangeLog
r185755 r185764 1 2015-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 1 13 2015-06-19 Mark Lam <mark.lam@apple.com> 2 14 -
trunk/Source/WTF/wtf/CheckedArithmetic.h
r185755 r185764 642 642 } 643 643 644 templatebool operator<(T rhs) const644 bool operator<(T rhs) const 645 645 { 646 646 return unsafeGet() < rhs; … … 652 652 } 653 653 654 templatebool operator<=(T rhs) const654 bool operator<=(T rhs) const 655 655 { 656 656 return unsafeGet() <= rhs; … … 662 662 } 663 663 664 templatebool operator>(T rhs) const664 bool operator>(T rhs) const 665 665 { 666 666 return unsafeGet() > rhs; … … 672 672 } 673 673 674 templatebool operator>=(T rhs) const674 bool operator>=(T rhs) const 675 675 { 676 676 return unsafeGet() >= rhs;
Note:
See TracChangeset
for help on using the changeset viewer.