2003-01-06 Paolo Carlini <pcarlini@unitus.it>
authorPaolo Carlini <pcarlini@unitus.it>
Mon, 6 Jan 2003 18:48:41 +0000 (19:48 +0100)
committerPaolo Carlini <paolo@gcc.gnu.org>
Mon, 6 Jan 2003 18:48:41 +0000 (18:48 +0000)
* src/codecvt.cc
(codecvt<char, char, mbstate_t>::do_in, do_out):
Tweak parameters to avoid unused parameter warnings.

From-SVN: r60946

libstdc++-v3/ChangeLog
libstdc++-v3/src/codecvt.cc

index 4f9d78d2ab3b62150b092d0021ae93515611d404..9c2874b6e9b5a35f7393529b01a9b59c0fc2843c 100644 (file)
@@ -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
index b6ccc43acc95a4b097662291108b79ce1566c44d..a436dc64d8cf78bb325d3785fd095c453aaed0c9 100644 (file)
@@ -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