(operator<<): Correct type of numeric argument.
authorUlrich Drepper <drepper@cygnus.com>
Wed, 4 Mar 1998 12:40:30 +0000 (12:40 +0000)
committerUlrich Drepper <drepper@gcc.gnu.org>
Wed, 4 Mar 1998 12:40:30 +0000 (12:40 +0000)
From-SVN: r18403

libstdc++/ChangeLog
libstdc++/cinst.cc

index 2084654..13e8ea0 100644 (file)
@@ -1,3 +1,7 @@
+1998-03-04 12:37  Ulrich Drepper <drepper@cygnus.com>
+
+       * cinst.cc [INSERT] (operator<<): Correct type of numeric argument.
+
 Fri Feb  6 01:36:21 1998  Manfred Hollstein  <manfred@s-direktnet.de>
 
        * Makefile.in (piclist): Check value of enable_shared, not PICFLAG.
index d28235d..010f3ca 100644 (file)
@@ -151,5 +151,5 @@ template c sqrt (ccr);
 template istream& operator>> (istream&, complex<f>&);
 #endif
 #ifdef INSERT
-template ostream& operator<< (ostream&, complex<f>);
+template ostream& operator<< (ostream&, const complex<f>&);
 #endif