diff options
author | Jeffrey Oldham <oldham@codesourcery.com> | 2001-02-06 17:41:44 +0000 |
---|---|---|
committer | Jeffrey D. Oldham <oldham@gcc.gnu.org> | 2001-02-06 17:41:44 +0000 |
commit | 9fbbdc9f61d1e70857236ad5b286e683130fa545 (patch) | |
tree | faf4e19d32371780945e1bdf16a8de2cc75fa89a | |
parent | 1ae10ad0d22ddb9e7a674e04669cdb771fc00530 (diff) | |
download | gcc-9fbbdc9f61d1e70857236ad5b286e683130fa545.zip gcc-9fbbdc9f61d1e70857236ad5b286e683130fa545.tar.gz gcc-9fbbdc9f61d1e70857236ad5b286e683130fa545.tar.bz2 |
misc-inst.cc (_S_pad_char): Modify declaration's parameters to match header files.
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.
From-SVN: r39496
-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 6c3dbf5..e050bfa 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 5556ebf..5feb2df 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 - - - - - - - - - - |