Changeset 242235 in webkit
- Timestamp:
- Feb 28, 2019, 3:33:08 PM (6 years ago)
- Location:
- trunk/Source/WTF
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WTF/ChangeLog
r242189 r242235 1 2019-02-28 Mark Lam <mark.lam@apple.com> 2 3 Change CheckedArithmetic to not use std::enable_if_t. 4 https://bugs.webkit.org/show_bug.cgi?id=195187 5 <rdar://problem/48464665> 6 7 Reviewed by Keith Miller. 8 9 Because C++11 does not like std::enable_if_t and there's a need to use this file with C++11. 10 11 * wtf/CheckedArithmetic.h: 12 1 13 2019-02-27 Simon Fraser <simon.fraser@apple.com> 2 14 -
trunk/Source/WTF/wtf/CheckedArithmetic.h
r241991 r242235 542 542 }; 543 543 544 template <class OverflowHandler, typename = std::enable_if_t<!std::is_scalar<OverflowHandler>::value>>544 template <class OverflowHandler, typename = typename std::enable_if<!std::is_scalar<OverflowHandler>::value>::type> 545 545 inline constexpr bool observesOverflow() { return true; } 546 546 … … 554 554 } 555 555 556 template <class OverflowHandler, typename U, typename V, typename R, typename = std::enable_if_t<!std::is_scalar<OverflowHandler>::value>>556 template <class OverflowHandler, typename U, typename V, typename R, typename = typename std::enable_if<!std::is_scalar<OverflowHandler>::value>::type> 557 557 static inline bool safeAdd(U lhs, V rhs, R& result) 558 558 { … … 568 568 } 569 569 570 template <class OverflowHandler, typename U, typename V, typename R, typename = std::enable_if_t<!std::is_scalar<OverflowHandler>::value>>570 template <class OverflowHandler, typename U, typename V, typename R, typename = typename std::enable_if<!std::is_scalar<OverflowHandler>::value>::type> 571 571 static inline bool safeSub(U lhs, V rhs, R& result) 572 572 { … … 582 582 } 583 583 584 template <class OverflowHandler, typename U, typename V, typename R, typename = std::enable_if_t<!std::is_scalar<OverflowHandler>::value>>584 template <class OverflowHandler, typename U, typename V, typename R, typename = typename std::enable_if<!std::is_scalar<OverflowHandler>::value>::type> 585 585 static inline bool safeMultiply(U lhs, V rhs, R& result) 586 586 {
Note:
See TracChangeset
for help on using the changeset viewer.