This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[v3] libstdc++/6811


Hi,

the following one-liner closes the PR.
Tested i686-pc-linux-gnu, approved by Gaby Dos Reis, applied trunk and 
3_1-branch.

Ciao, Paolo.

///////////////

2002-05-26  Carlo Wood  <carlo@alinoe.com>
            Paolo Carlini  <pcarlini@unitus.it>

       PR libstdc++/6811
       * config/locale/ieee_1003.1-2001/codecvt_specializations.h
       (__enc_traits::operator=): add missing return statement.

===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/config/locale/ieee_1003.1-2001/codecvt_specializations.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gcc/libstdc++-v3/config/locale/ieee_1003.1-2001/codecvt_specializations.h	2002/04/16 00:45:20	1.3
+++ gcc/libstdc++-v3/config/locale/ieee_1003.1-2001/codecvt_specializations.h	2002/05/26 14:35:04	1.4
@@ -110,6 +110,7 @@
       _M_out_desc = 0;
       _M_ext_bom = __obj._M_ext_bom;
       _M_int_bom = __obj._M_int_bom;
+      return *this;
     }
 
     ~__enc_traits()





Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]