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
This commit is contained in:
parent
aa2408185d
commit
07fe2dec7a
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
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>
|
||||
|
||||
* include/bits/std_limits.h: New file.
|
||||
|
|
|
@ -930,14 +930,14 @@ namespace std
|
|||
inline complex<long double>&
|
||||
complex<long double>::operator*=(long double __r)
|
||||
{
|
||||
__real__ _M_value *= __r;
|
||||
_M_value *= __r;
|
||||
return *this;
|
||||
}
|
||||
|
||||
inline complex<long double>&
|
||||
complex<long double>::operator/=(long double __r)
|
||||
{
|
||||
__real__ _M_value /= __r;
|
||||
_M_value /= __r;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue