From: Ulrich Drepper Date: Wed, 4 Mar 1998 12:40:30 +0000 (+0000) Subject: (operator<<): Correct type of numeric argument. X-Git-Tag: prereleases/egcs-1.1-prerelease~2193 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=875dfceca075da99c68091f8452293a7cdedb6b4;p=thirdparty%2Fgcc.git (operator<<): Correct type of numeric argument. From-SVN: r18403 --- diff --git a/libstdc++/ChangeLog b/libstdc++/ChangeLog index 2084654b26c8..13e8ea00c2a0 100644 --- a/libstdc++/ChangeLog +++ b/libstdc++/ChangeLog @@ -1,3 +1,7 @@ +1998-03-04 12:37 Ulrich Drepper + + * cinst.cc [INSERT] (operator<<): Correct type of numeric argument. + Fri Feb 6 01:36:21 1998 Manfred Hollstein * Makefile.in (piclist): Check value of enable_shared, not PICFLAG. diff --git a/libstdc++/cinst.cc b/libstdc++/cinst.cc index d28235dd2b50..010f3cad5e67 100644 --- a/libstdc++/cinst.cc +++ b/libstdc++/cinst.cc @@ -151,5 +151,5 @@ template c sqrt (ccr); template istream& operator>> (istream&, complex&); #endif #ifdef INSERT -template ostream& operator<< (ostream&, complex); +template ostream& operator<< (ostream&, const complex&); #endif