Skip to content

Commit ec503b4

Browse files
committed
applies clang-format
1 parent 484e554 commit ec503b4

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

libcxx/include/complex

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff 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

10741068
template <class _Tp>
10751069
_LIBCPP_HIDE_FROM_ABI complex<_Tp> sqrt(const complex<_Tp>& __x) {

0 commit comments

Comments
 (0)