]> gcc.gnu.org Git - gcc.git/commitdiff
(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 2084654b26c866197847b97f539145789492841d..13e8ea00c2a06df423dae2f6e1d3f8392d25a5dd 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 d28235dd2b50264e286519c2b1cd461859f0f423..010f3cad5e6797da6d435a096b3cf9d42ea8bc42 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
This page took 0.058191 seconds and 5 git commands to generate.