diff options
| author | oldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-06 17:41:44 +0000 |
|---|---|---|
| committer | oldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-06 17:41:44 +0000 |
| commit | d0d6b1de2a673052ab0b5e6820b921d033249376 (patch) | |
| tree | faf4e19d32371780945e1bdf16a8de2cc75fa89a | |
| parent | 8081c541d7b87f4a83d521134661423e117adbc7 (diff) | |
| download | ppe42-gcc-d0d6b1de2a673052ab0b5e6820b921d033249376.tar.gz ppe42-gcc-d0d6b1de2a673052ab0b5e6820b921d033249376.zip | |
2001-02-06 Jeffrey Oldham <oldham@codesourcery.com>
* src/misc-inst.cc (_S_pad_char): Modify declaration's parameters
to match header files.
(_S_output_float): Likewise.
(_S_copy_streambufs): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39496 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | libstdc++-v3/ChangeLog | 7 | ||||
| -rw-r--r-- | libstdc++-v3/src/misc-inst.cc | 22 |
2 files changed, 14 insertions, 15 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 6c3dbf5a877..e050bfa6838 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2001-02-06 Jeffrey Oldham <oldham@codesourcery.com> + + * src/misc-inst.cc (_S_pad_char): Modify declaration's parameters + to match header files. + (_S_output_float): Likewise. + (_S_copy_streambufs): Likewise. + 2001-02-06 Hyman Rosen <Hyman.Rosen@kbcfp.com> Phil Edwards <pme@sources.redhat.com> diff --git a/libstdc++-v3/src/misc-inst.cc b/libstdc++-v3/src/misc-inst.cc index 5556ebf0296..5feb2df325a 100644 --- a/libstdc++-v3/src/misc-inst.cc +++ b/libstdc++-v3/src/misc-inst.cc @@ -262,11 +262,13 @@ namespace std { template void - _S_pad_char (basic_ios<char>&, char*, const char*, int, int); + _S_pad_char (basic_ios<char>&, char*, const char*, + const streamsize, const streamsize); #ifdef _GLIBCPP_USE_WCHAR_T template void - _S_pad_char (basic_ios<wchar_t>&, wchar_t*, const wchar_t*, int, int); + _S_pad_char (basic_ios<wchar_t>&, wchar_t*, const wchar_t*, + const streamsize, const streamsize); #endif template @@ -283,16 +285,16 @@ namespace std { template ostreambuf_iterator<char> _S_output_float (ostreambuf_iterator<char>, ios_base&, char, - const char*, unsigned); + const char*, size_t); #ifdef _GLIBCPP_USE_WCHAR_T template ostreambuf_iterator<wchar_t> _S_output_float (ostreambuf_iterator<wchar_t>, ios_base&, wchar_t, - const wchar_t*, unsigned); + const wchar_t*, size_t); #endif template - int + streamsize _S_copy_streambufs(basic_ios<char>&, basic_streambuf<char>*, basic_streambuf<char>*); @@ -304,13 +306,3 @@ namespace std { basic_streambuf<wchar_t>*); #endif } //std - - - - - - - - - - |

