Skip to content

Commit 08fc856

Browse files
committed
Format fix
1 parent 0f07d9f commit 08fc856

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flang/lib/Evaluate/intrinsics-library.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ template <typename TR, typename T> static TR CppToC(const std::complex<T> &x) {
301301
return r;
302302
}
303303
template <typename T, typename TA> static std::complex<T> CToCpp(const TA &x) {
304-
TA &z{const_cast<TA&>(x)};
304+
TA &z{const_cast<TA &>(x)};
305305
return std::complex<T>(reIm<T, TA>(z, CRI::Real), reIm<T, TA>(z, CRI::Imag));
306306
}
307307
#endif

0 commit comments

Comments
 (0)