aboutsummaryrefslogtreecommitdiff
path: root/libstdc++/cinst.cc
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@cygnus.com>1998-03-04 12:40:30 +0000
committerUlrich Drepper <drepper@cygnus.com>1998-03-04 12:40:30 +0000
commit8fe9db66321144e46539e730bb06458474257ef9 (patch)
tree58fa676967e914435e944270a559e8bda20d26cb /libstdc++/cinst.cc
parent49b46edef1df9932a90e50938ca10268df5dc8b5 (diff)
(operator<<): Correct type of numeric argument.
git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@18403 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++/cinst.cc')
-rw-r--r--libstdc++/cinst.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++/cinst.cc b/libstdc++/cinst.cc
index d28235dd2b5..010f3cad5e6 100644
--- a/libstdc++/cinst.cc
+++ b/libstdc++/cinst.cc
@@ -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