Skip to content

Commit 9ef79dc

Browse files
committed
remove unnecessary qualifying of std::array in function return type
1 parent 458b0d3 commit 9ef79dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__math/hypot.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ struct __hypot_factors {
5858
// Computes `__hypot_factors` needed to determine if over-/underflow might happen for `std::hypot(x,y,z)`.
5959
// Returns: [underflow_factors, overflow_factors]
6060
template <class _Real>
61-
_LIBCPP_HIDE_FROM_ABI std::array<__math::__hypot_factors<_Real>, 2> __create_factors() {
61+
_LIBCPP_HIDE_FROM_ABI array<__math::__hypot_factors<_Real>, 2> __create_factors() {
6262
static_assert(std::numeric_limits<_Real>::is_iec559);
6363

6464
__math::__hypot_factors<_Real> __underflow, __overflow;

0 commit comments

Comments
 (0)