Skip to content

Commit 17f0550

Browse files
committed
Fixes more forwarding calls.
1 parent 13b19d2 commit 17f0550

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libcxx/include/__numeric/saturation_arithmetic.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,22 +118,22 @@ _LIBCPP_HIDE_FROM_ABI constexpr _Tp add_sat(_Tp __x, _Tp __y) noexcept {
118118

119119
template <__libcpp_integer _Tp>
120120
_LIBCPP_HIDE_FROM_ABI constexpr _Tp sub_sat(_Tp __x, _Tp __y) noexcept {
121-
return std::sub_sat(__x, __y);
121+
return std::__sub_sat(__x, __y);
122122
}
123123

124124
template <__libcpp_integer _Tp>
125125
_LIBCPP_HIDE_FROM_ABI constexpr _Tp mul_sat(_Tp __x, _Tp __y) noexcept {
126-
return std::mul_sat(__x, __y);
126+
return std::__mul_sat(__x, __y);
127127
}
128128

129129
template <__libcpp_integer _Tp>
130130
_LIBCPP_HIDE_FROM_ABI constexpr _Tp div_sat(_Tp __x, _Tp __y) noexcept {
131-
return std::div_sat(__x, __y);
131+
return std::__div_sat(__x, __y);
132132
}
133133

134134
template <__libcpp_integer _Rp, __libcpp_integer _Tp>
135135
_LIBCPP_HIDE_FROM_ABI constexpr _Rp saturate_cast(_Tp __x) noexcept {
136-
return std::saturate_cast<_Rp>(__x);
136+
return std::__saturate_cast<_Rp>(__x);
137137
}
138138

139139
#endif // _LIBCPP_STD_VER >= 26

0 commit comments

Comments
 (0)