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

From-SVN: r60948

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

index 0cd1b50a19b8b94ad502c1506f71ce91f3690813..dafc0f9b4af6198e9d780c21236b377f85e83634 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 0ccd10f413c812491e6d4c4f1c0b8e1b1ba608f5..c5369799aa78c12efe75e19b88f897327901f286 100644 (file)
@@ -55,8 +55,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
@@ -79,8 +79,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