(operator<<): Correct type of numeric argument.

From-SVN: r18403
This commit is contained in:
Ulrich Drepper 1998-03-04 12:40:30 +00:00 committed by Ulrich Drepper
parent 89a5e42bfd
commit 875dfceca0
2 changed files with 5 additions and 1 deletions

View 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.

View 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