diff options
author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-06 18:48:41 +0000 |
---|---|---|
committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-06 18:48:41 +0000 |
commit | 777375dbdebf0d1bd421e3a720cf454d406b015d (patch) | |
tree | 08b68adcfa5d6f20dfeef6cbfa556639b5dc57cc /libstdc++-v3/src/codecvt.cc | |
parent | 42bbd0ec35ffa6f3c69b17b407e046e6985a34a6 (diff) | |
download | gcc-777375dbdebf0d1bd421e3a720cf454d406b015d.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60946 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/src/codecvt.cc')
-rw-r--r-- | libstdc++-v3/src/codecvt.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libstdc++-v3/src/codecvt.cc b/libstdc++-v3/src/codecvt.cc index b6ccc43acc9..a436dc64d8c 100644 --- a/libstdc++-v3/src/codecvt.cc +++ b/libstdc++-v3/src/codecvt.cc @@ -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 |