From 80c4581d61f758977c799cc323949bfacf85c223 Mon Sep 17 00:00:00 2001 From: Paolo Carlini Date: Mon, 6 Jan 2003 19:48:41 +0100 Subject: [PATCH] 2003-01-06 Paolo Carlini * src/codecvt.cc (codecvt::do_in, do_out): Tweak parameters to avoid unused parameter warnings. From-SVN: r60946 --- libstdc++-v3/ChangeLog | 6 ++++++ libstdc++-v3/src/codecvt.cc | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 4f9d78d2ab3..9c2874b6e9b 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2003-01-06 Paolo Carlini + + * src/codecvt.cc + (codecvt::do_in, do_out): + Tweak parameters to avoid unused parameter warnings. + 2003-01-06 Paolo Carlini PR libstdc++/9151 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:: 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:: 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 -- 2.30.2