diff options
Diffstat (limited to 'libgo/go/cmath/conj.go')
-rw-r--r-- | libgo/go/cmath/conj.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/cmath/conj.go b/libgo/go/cmath/conj.go index 7a19e863111..776b57da7b7 100644 --- a/libgo/go/cmath/conj.go +++ b/libgo/go/cmath/conj.go @@ -5,4 +5,4 @@ package cmath // Conj returns the complex conjugate of x. -func Conj(x complex128) complex128 { return cmplx(real(x), -imag(x)) } +func Conj(x complex128) complex128 { return complex(real(x), -imag(x)) } |