Skip to content

Commit db3e72e

Browse files
committed
Cleanup
1 parent f5db95e commit db3e72e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

libcxx/include/__numeric/saturation_arithmetic.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ template <typename _Tp>
2828
concept __libcpp_standard_integer = __libcpp_unsigned_integer<decay_t<_Tp>> || __libcpp_signed_integer<decay_t<_Tp>>;
2929

3030
template <__libcpp_standard_integer _Tp>
31-
// requires __libcpp_standard_integer<_Tp>
3231
_LIBCPP_HIDE_FROM_ABI constexpr _Tp add_sat(_Tp __x, _Tp __y) noexcept {
3332
if (_Tp __sum; !__builtin_add_overflow(__x, __y, &__sum))
3433
return __sum;

0 commit comments

Comments
 (0)