mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-02 08:13:58 +08:00
2003-01-06 Paolo Carlini <pcarlini@unitus.it>
* src/codecvt.cc (codecvt<char, char, mbstate_t>::do_in, do_out): Tweak parameters to avoid unused parameter warnings. From-SVN: r60946
This commit is contained in:
parent
62b8a44e26
commit
80c4581d61
@ -1,3 +1,9 @@
|
||||
2003-01-06 Paolo Carlini <pcarlini@unitus.it>
|
||||
|
||||
* src/codecvt.cc
|
||||
(codecvt<char, char, mbstate_t>::do_in, do_out):
|
||||
Tweak parameters to avoid unused parameter warnings.
|
||||
|
||||
2003-01-06 Paolo Carlini <pcarlini@unitus.it>
|
||||
|
||||
PR libstdc++/9151
|
||||
|
@ -60,8 +60,8 @@ namespace std
|
||||
codecvt_base::result
|
||||
codecvt<char, char, mbstate_t>::
|
||||
do_out(state_type&, const intern_type* __from,
|
||||
const intern_type* __from_end, const intern_type*& __from_next,
|
||||
extern_type* __to, extern_type* __to_end,
|
||||
const intern_type*, const intern_type*& __from_next,
|
||||
extern_type* __to, extern_type*,
|
||||
extern_type*& __to_next) const
|
||||
{
|
||||
// _GLIBCPP_RESOLVE_LIB_DEFECTS
|
||||
@ -84,8 +84,8 @@ namespace std
|
||||
codecvt_base::result
|
||||
codecvt<char, char, mbstate_t>::
|
||||
do_in(state_type&, const extern_type* __from,
|
||||
const extern_type* __from_end, const extern_type*& __from_next,
|
||||
intern_type* __to, intern_type* __to_end,
|
||||
const extern_type*, const extern_type*& __from_next,
|
||||
intern_type* __to, intern_type*,
|
||||
intern_type*& __to_next) const
|
||||
{
|
||||
// _GLIBCPP_RESOLVE_LIB_DEFECTS
|
||||
|
Loading…
Reference in New Issue
Block a user