Commit 07fe2dec by Gunter Winkler Committed by Gabriel Dos Reis

2001-08-10 Gunter Winkler gunter.winkler@mathematik.tu-chemnitz.de

      * include/bits/std_complex.h (complex<long double>::operator*=,
      complex<long double>::operator/=): Fix thinko.

From-SVN: r44767
parent aa240818
2001-08-10 Gunter Winkler gunter.winkler@mathematik.tu-chemnitz.de
* include/bits/std_complex.h (complex<long double>::operator*=,
complex<long double>::operator/=): Fix thinko.
2001-08-10 Gabriel Dos Reis <gdr@merlin.codesourcery.com> 2001-08-10 Gabriel Dos Reis <gdr@merlin.codesourcery.com>
* include/bits/std_limits.h: New file. * include/bits/std_limits.h: New file.
......
...@@ -930,14 +930,14 @@ namespace std ...@@ -930,14 +930,14 @@ namespace std
inline complex<long double>& inline complex<long double>&
complex<long double>::operator*=(long double __r) complex<long double>::operator*=(long double __r)
{ {
__real__ _M_value *= __r; _M_value *= __r;
return *this; return *this;
} }
inline complex<long double>& inline complex<long double>&
complex<long double>::operator/=(long double __r) complex<long double>::operator/=(long double __r)
{ {
__real__ _M_value /= __r; _M_value /= __r;
return *this; 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