mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-02 16:23:56 +08:00
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
This commit is contained in:
parent
1ae10ad0d2
commit
9fbbdc9f61
@ -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>
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user