diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-08-26 12:01:12 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-08-26 12:01:12 +0000 |
commit | 8cd4d12bc3a43ab1d219c44c23d9de367fd9b8cc (patch) | |
tree | 7295fd7af91771076eda2b324b1fa48fa2901c67 /gnu | |
parent | b090a6fa34465ffeffdc186b9359d4320637592c (diff) |
getline template badly instantiated, found by compiling with egcs
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libg++/libstdc++/sinst.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/lib/libg++/libstdc++/sinst.cc b/gnu/lib/libg++/libstdc++/sinst.cc index 136a05e532b..2106e1bdc87 100644 --- a/gnu/lib/libg++/libstdc++/sinst.cc +++ b/gnu/lib/libg++/libstdc++/sinst.cc @@ -143,5 +143,5 @@ template istream& operator>> (istream&, s&); template ostream& operator<< (ostream&, const s&); #endif // INSERT #ifdef GETLINE -template istream& getline (istream&, s&); +template istream& getline (istream&, s&, c); #endif |