diff options
| author | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-10 15:51:00 +0000 |
|---|---|---|
| committer | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-10 15:51:00 +0000 |
| commit | d85b1be3383cd6d87e0a83eb296550e318e3f0ac (patch) | |
| tree | 23de92af9cdc01d07259ea853f5a57a3d490bb3e /libstdc++-v3/include/bits/std_complex.h | |
| parent | 7e923844042e53fc8208659bf2831189e378cf54 (diff) | |
| download | ppe42-gcc-d85b1be3383cd6d87e0a83eb296550e318e3f0ac.tar.gz ppe42-gcc-d85b1be3383cd6d87e0a83eb296550e318e3f0ac.zip | |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44767 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/bits/std_complex.h')
| -rw-r--r-- | libstdc++-v3/include/bits/std_complex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/include/bits/std_complex.h b/libstdc++-v3/include/bits/std_complex.h index e16a3bd2c80..be8d9531349 100644 --- a/libstdc++-v3/include/bits/std_complex.h +++ b/libstdc++-v3/include/bits/std_complex.h @@ -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; } |

