We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5eb3af0 commit ef2dcd2Copy full SHA for ef2dcd2
libc/src/__support/complex_type.h
@@ -69,7 +69,7 @@ template <> struct make_real<cfloat128> {
69
70
template <typename T> using make_real_t = typename make_real<T>::type;
71
72
-template <typename T> LIBC_INLINE static constexpr T conjugate(T c) {
+template <typename T> LIBC_INLINE constexpr T conjugate(T c) {
73
Complex<make_real_t<T>> c_c = cpp::bit_cast<Complex<make_real_t<T>>>(c);
74
c_c.imag = -c_c.imag;
75
return cpp::bit_cast<T>(c_c);
0 commit comments