]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
2001-08-10 Gunter Winkler gunter.winkler@mathematik.tu-chemnitz.de
authorGunter Winkler <gunter.winkler@mathematik.tu-chemnitz.de>
Fri, 10 Aug 2001 15:51:00 +0000 (15:51 +0000)
committerGabriel Dos Reis <gdr@gcc.gnu.org>
Fri, 10 Aug 2001 15:51:00 +0000 (15:51 +0000)
      * include/bits/std_complex.h (complex<long double>::operator*=,
      complex<long double>::operator/=): Fix thinko.

From-SVN: r44767

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/std_complex.h

index 2a4b148cb745d183680faf38677646f2f59a2803..06af2dce8ecd2f6fafb55464bcb366d6ac7bdb71 100644 (file)
@@ -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.
index e16a3bd2c800f5fcb3e0f0cc4360b7e7f1663152..be8d95313492196a14f40fd4cc051a29124bfe3b 100644 (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;
   }