We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 458b0d3 commit 9ef79dcCopy full SHA for 9ef79dc
libcxx/include/__math/hypot.h
@@ -58,7 +58,7 @@ struct __hypot_factors {
58
// Computes `__hypot_factors` needed to determine if over-/underflow might happen for `std::hypot(x,y,z)`.
59
// Returns: [underflow_factors, overflow_factors]
60
template <class _Real>
61
-_LIBCPP_HIDE_FROM_ABI std::array<__math::__hypot_factors<_Real>, 2> __create_factors() {
+_LIBCPP_HIDE_FROM_ABI array<__math::__hypot_factors<_Real>, 2> __create_factors() {
62
static_assert(std::numeric_limits<_Real>::is_iec559);
63
64
__math::__hypot_factors<_Real> __underflow, __overflow;
0 commit comments