Commit 0a9419cc by Gabriel Dos Reis Committed by Gabriel Dos Reis

std_complex.h (complex<float>::operator-=): Fix thinko.

      * include/bits/std_complex.h (complex<float>::operator-=): Fix
      thinko.

From-SVN: r38377
parent ecbe3dd5
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.
......
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment