This is the mail archive of the gcc-prs@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]

libstdc++/9028


The following reply was made to PR libstdc++/9028; it has been noted by GNATS.

From: bkoz@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: libstdc++/9028
Date: 6 Feb 2003 06:24:21 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Changes by:	bkoz@gcc.gnu.org	2003-02-06 06:24:21
 
 Modified files:
 	libstdc++-v3   : ChangeLog 
 	libstdc++-v3/config/locale/generic: codecvt_members.cc 
 	libstdc++-v3/config/locale/gnu: codecvt_members.cc 
 	libstdc++-v3/config/locale/ieee_1003.1-2001: 
 	                                             codecvt_specializations.h 
 	libstdc++-v3/include/bits: codecvt.h 
 	libstdc++-v3/src: codecvt.cc 
 	libstdc++-v3/testsuite/22_locale/codecvt/always_noconv/wchar_t: 
 	                                                                1.cc 
 	libstdc++-v3/testsuite/22_locale/codecvt/encoding/wchar_t: 1.cc 
 	libstdc++-v3/testsuite/22_locale/codecvt/in/wchar_t: 1.cc 
 	libstdc++-v3/testsuite/22_locale/codecvt/length/char: 1.cc 
 	libstdc++-v3/testsuite/22_locale/codecvt/length/wchar_t: 1.cc 
 	libstdc++-v3/testsuite/22_locale/codecvt/max_length/wchar_t: 
 	                                                             1.cc 
 	libstdc++-v3/testsuite/22_locale/codecvt/out/wchar_t: 1.cc 
 	libstdc++-v3/testsuite/22_locale/codecvt/unshift/wchar_t: 1.cc 
 Added files:
 	libstdc++-v3/testsuite/22_locale/codecvt/always_noconv/wchar_t: 
 	                                                                2.cc 
 	                                                                3.cc 
 	                                                                4.cc 
 	libstdc++-v3/testsuite/22_locale/codecvt/encoding/wchar_t: 2.cc 
 	                                                           3.cc 
 	                                                           4.cc 
 	libstdc++-v3/testsuite/22_locale/codecvt/in/wchar_t: 2.cc 3.cc 
 	                                                     4.cc 5.cc 
 	                                                     6.cc 7.cc 
 	                                                     8.cc 9.cc 
 	libstdc++-v3/testsuite/22_locale/codecvt/length/char: 2.cc 
 	libstdc++-v3/testsuite/22_locale/codecvt/length/wchar_t: 2.cc 
 	                                                         3.cc 
 	                                                         4.cc 
 	                                                         5.cc 
 	                                                         6.cc 
 	                                                         7.cc 
 	libstdc++-v3/testsuite/22_locale/codecvt/max_length/wchar_t: 
 	                                                             2.cc 
 	                                                             3.cc 
 	                                                             4.cc 
 	libstdc++-v3/testsuite/22_locale/codecvt/out/wchar_t: 2.cc 3.cc 
 	                                                      4.cc 5.cc 
 	                                                      6.cc 7.cc 
 	libstdc++-v3/testsuite/22_locale/codecvt/unicode: 1.cc 
 	libstdc++-v3/testsuite/22_locale/codecvt/unshift/wchar_t: 2.cc 
 	                                                          3.cc 
 	                                                          4.cc 
 
 Log message:
 	2003-02-06  Benjamin Kosnik  <bkoz@redhat.com>
 	
 	* testsuite/22_locale/codecvt/encoding/wchar_t/1.cc (test01):
 	Explicitly use the "C" locale.
 	* testsuite/22_locale/codecvt/max_length/wchar_t/1.cc (test01): Same.
 	
 	2003-02-06  Petur Runolfsson  <peturr02@ru.is>
 	
 	DR 75
 	DR 305
 	PR libstdc++/9028 (partial)
 	PR libstdc++/9224
 	PR libstdc++/9246
 	PR libstdc++/9247
 	
 	* src/codecvt.cc
 	(codecvt<wchar_t, char, mbstate_t>::do_encoding,
 	codecvt<wchar_t, char, mbstate_t>::do_length,
 	codecvt<wchar_t, char, mbstate_t>::do_max_length):
 	Move...
 	* config/locale/generic/codecvt_members.cc:  ...here.
 	* config/locale/gnu/codecvt_members.cc:  ...and here.
 	
 	* config/locale/generic/codecvt_members.cc,
 	* config/locale/gnu/codecvt_members.cc
 	(codecvt<wchar_t, char, mbstate_t>::do_encoding
 	codecvt<wchar_t, char, mbstate_t>::do_in,
 	codecvt<wchar_t, char, mbstate_t>::do_length,
 	codecvt<wchar_t, char, mbstate_t>::do_max_length,
 	codecvt<wchar_t, char, mbstate_t>::do_out):
 	New implementation that handles stateless encodings,
 	including UTF-8.
 	
 	* config/locale/generic/codecvt_members.cc,
 	* config/locale/gnu/codecvt_members.cc,
 	* config/locale/ieee_1003.1-2001/codecvt_specializations.h,
 	* include/bits/codecvt.h,
 	* src/codecvt.cc
 	(codecvt::length, codecvt::do_length):
 	Change type of first argument of length and do_length from
 	'const state_type&' to 'state_type&' according to DR 75.
 	
 	* testsuite/22_locale/codecvt/always_noconv/wchar_t/1.cc:  Cleanup.
 	* testsuite/22_locale/codecvt/always_noconv/wchar_t/2.cc:  New test.
 	* testsuite/22_locale/codecvt/always_noconv/wchar_t/3.cc:  New test.
 	* testsuite/22_locale/codecvt/always_noconv/wchar_t/4.cc:  New test.
 	* testsuite/22_locale/codecvt/encoding/wchar_t/1.cc:
 	Cleanup and check for correct return value from encoding
 	for "C" locale.
 	* testsuite/22_locale/codecvt/encoding/wchar_t/2.cc:  New test.
 	* testsuite/22_locale/codecvt/encoding/wchar_t/3.cc:  New test.
 	* testsuite/22_locale/codecvt/encoding/wchar_t/4.cc:  New test.
 	* testsuite/22_locale/codecvt/in/wchar_t/1.cc:  Cleanup.
 	* testsuite/22_locale/codecvt/in/wchar_t/2.cc:  New test.
 	* testsuite/22_locale/codecvt/in/wchar_t/3.cc:  New test.
 	* testsuite/22_locale/codecvt/in/wchar_t/4.cc:  New test.
 	* testsuite/22_locale/codecvt/in/wchar_t/5.cc:  New test.
 	* testsuite/22_locale/codecvt/in/wchar_t/6.cc:  New test.
 	* testsuite/22_locale/codecvt/in/wchar_t/7.cc:  New test.
 	* testsuite/22_locale/codecvt/in/wchar_t/8.cc:  New test.
 	* testsuite/22_locale/codecvt/in/wchar_t/9.cc:  New test.
 	* testsuite/22_locale/codecvt/length/char/1.cc:  Cleanup.
 	* testsuite/22_locale/codecvt/length/char/2.cc:  New test.
 	* testsuite/22_locale/codecvt/length/wchar_t/1.cc:  Cleanup.
 	* testsuite/22_locale/codecvt/length/wchar_t/2.cc:  New test.
 	* testsuite/22_locale/codecvt/length/wchar_t/3.cc:  New test.
 	* testsuite/22_locale/codecvt/length/wchar_t/4.cc:  New test.
 	* testsuite/22_locale/codecvt/length/wchar_t/5.cc:  New test.
 	* testsuite/22_locale/codecvt/length/wchar_t/6.cc:  New test.
 	* testsuite/22_locale/codecvt/length/wchar_t/7.cc:  New test.
 	* testsuite/22_locale/codecvt/max_length/wchar_t/1.cc:  Cleanup.
 	* testsuite/22_locale/codecvt/max_length/wchar_t/2.cc:  New test.
 	* testsuite/22_locale/codecvt/max_length/wchar_t/3.cc:  New test.
 	* testsuite/22_locale/codecvt/max_length/wchar_t/4.cc:  New test.
 	* testsuite/22_locale/codecvt/out/wchar_t/1.cc:  Cleanup.
 	* testsuite/22_locale/codecvt/out/wchar_t/2.cc:  New test.
 	* testsuite/22_locale/codecvt/out/wchar_t/3.cc:  New test.
 	* testsuite/22_locale/codecvt/out/wchar_t/4.cc:  New test.
 	* testsuite/22_locale/codecvt/out/wchar_t/5.cc:  New test.
 	* testsuite/22_locale/codecvt/out/wchar_t/6.cc:  New test.
 	* testsuite/22_locale/codecvt/out/wchar_t/7.cc:  New test.
 	* testsuite/22_locale/codecvt/unicode/1.cc:  New test.
 	* testsuite/22_locale/codecvt/unshift/wchar_t/1.cc:  Cleanup.
 	* testsuite/22_locale/codecvt/unshift/wchar_t/2.cc:  New test.
 	* testsuite/22_locale/codecvt/unshift/wchar_t/3.cc:  New test.
 	* testsuite/22_locale/codecvt/unshfit/wchar_t/4.cc:  New test.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&r1=1.1529&r2=1.1530
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/config/locale/generic/codecvt_members.cc.diff?cvsroot=gcc&r1=1.3&r2=1.4
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/config/locale/gnu/codecvt_members.cc.diff?cvsroot=gcc&r1=1.3&r2=1.4
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/config/locale/ieee_1003.1-2001/codecvt_specializations.h.diff?cvsroot=gcc&r1=1.6&r2=1.7
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/codecvt.h.diff?cvsroot=gcc&r1=1.21&r2=1.22
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/src/codecvt.cc.diff?cvsroot=gcc&r1=1.16&r2=1.17
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/always_noconv/wchar_t/2.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/always_noconv/wchar_t/3.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/always_noconv/wchar_t/4.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/always_noconv/wchar_t/1.cc.diff?cvsroot=gcc&r1=1.1&r2=1.2
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/encoding/wchar_t/2.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/encoding/wchar_t/3.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/encoding/wchar_t/4.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/encoding/wchar_t/1.cc.diff?cvsroot=gcc&r1=1.1&r2=1.2
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/in/wchar_t/2.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/in/wchar_t/3.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/in/wchar_t/4.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/in/wchar_t/5.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/in/wchar_t/6.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/in/wchar_t/7.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/in/wchar_t/8.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/in/wchar_t/9.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/in/wchar_t/1.cc.diff?cvsroot=gcc&r1=1.1&r2=1.2
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/length/char/2.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/length/char/1.cc.diff?cvsroot=gcc&r1=1.1&r2=1.2
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/length/wchar_t/2.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/length/wchar_t/3.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/length/wchar_t/4.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/length/wchar_t/5.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/length/wchar_t/6.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/length/wchar_t/7.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/length/wchar_t/1.cc.diff?cvsroot=gcc&r1=1.1&r2=1.2
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/max_length/wchar_t/2.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/max_length/wchar_t/3.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/max_length/wchar_t/4.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/max_length/wchar_t/1.cc.diff?cvsroot=gcc&r1=1.1&r2=1.2
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/out/wchar_t/2.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/out/wchar_t/3.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/out/wchar_t/4.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/out/wchar_t/5.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/out/wchar_t/6.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/out/wchar_t/7.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/out/wchar_t/1.cc.diff?cvsroot=gcc&r1=1.1&r2=1.2
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/unicode/1.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/unshift/wchar_t/2.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/unshift/wchar_t/3.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/unshift/wchar_t/4.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt/unshift/wchar_t/1.cc.diff?cvsroot=gcc&r1=1.1&r2=1.2
 


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