Skip to content

Commit 0f07d9f

Browse files
committed
Fix format
1 parent 612b6c1 commit 0f07d9f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

flang/lib/Evaluate/intrinsics-library.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,7 @@ template <typename TR, typename T> static TR CppToC(const std::complex<T> &x) {
302302
}
303303
template <typename T, typename TA> static std::complex<T> CToCpp(const TA &x) {
304304
TA &z{const_cast<TA&>(x)};
305-
return std::complex<T>(reIm<T, TA>(z, CRI::Real),
306-
reIm<T, TA>(z, CRI::Imag));
305+
return std::complex<T>(reIm<T, TA>(z, CRI::Real), reIm<T, TA>(z, CRI::Imag));
307306
}
308307
#endif
309308

0 commit comments

Comments
 (0)