diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b0d45684a0c0cea0b1d6ec4bf7d33bfcfce4b193..d5692fc6497fdc42312b83fd4dd6a6e66e1f1881 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2000-12-19 Gabriel Dos Reis <gdr@codesourcery.com> + + * include/bits/std_complex.h (complex<float>::operator-=): Fix + thinko. + 2000-12-18 Benjamin Kosnik <bkoz@redhat.com> * configure.in: Set os_include_dir for cross_compiles. diff --git a/libstdc++-v3/include/bits/std_complex.h b/libstdc++-v3/include/bits/std_complex.h index 10f0661a3b4d660523c3db570f79910094181328..136ecb458f35aa8a2f04a485c5bc82e8fd518052 100644 --- a/libstdc++-v3/include/bits/std_complex.h +++ b/libstdc++-v3/include/bits/std_complex.h @@ -615,7 +615,7 @@ namespace std complex<float>::operator-=(const complex<_Tp>& __z) { __real__ _M_value -= __z.real(); - __imag__ _M_value -= __z.real(); + __imag__ _M_value -= __z.imag(); return *this; }