File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -1059,17 +1059,11 @@ inline _LIBCPP_HIDE_FROM_ABI complex<_Tp> log10(const complex<_Tp>& __x) {
10591059
10601060// sqrt
10611061
1062- _LIBCPP_HIDE_FROM_ABI inline _Complex float __csqrt (_Complex float __v) {
1063- return __builtin_csqrtf (__v);
1064- }
1062+ _LIBCPP_HIDE_FROM_ABI inline _Complex float __csqrt (_Complex float __v) { return __builtin_csqrtf (__v); }
10651063
1066- _LIBCPP_HIDE_FROM_ABI inline _Complex double __csqrt (_Complex double __v) {
1067- return __builtin_csqrt (__v);
1068- }
1064+ _LIBCPP_HIDE_FROM_ABI inline _Complex double __csqrt (_Complex double __v) { return __builtin_csqrt (__v); }
10691065
1070- _LIBCPP_HIDE_FROM_ABI inline _Complex long double __csqrt (_Complex long double __v) {
1071- return __builtin_csqrtl (__v);
1072- }
1066+ _LIBCPP_HIDE_FROM_ABI inline _Complex long double __csqrt (_Complex long double __v) { return __builtin_csqrtl (__v); }
10731067
10741068template <class _Tp >
10751069_LIBCPP_HIDE_FROM_ABI complex <_Tp> sqrt (const complex <_Tp>& __x) {
You can’t perform that action at this time.
0 commit comments