public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
From: bkoz@gcc.gnu.org
To: nobody@gcc.gnu.org
Cc: gcc-prs@gcc.gnu.org,
Subject: libstdc++/9028
Date: Thu, 06 Feb 2003 06:26:00 -0000	[thread overview]
Message-ID: <20030206062601.2928.qmail@sources.redhat.com> (raw)

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
 


             reply	other threads:[~2003-02-06  6:26 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-02-06  6:26 bkoz [this message]
2003-05-12 18:28 libstdc++/9028 bkoz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20030206062601.2928.qmail@sources.redhat.com \
    --to=bkoz@gcc.gnu.org \
    --cc=gcc-prs@gcc.gnu.org \
    --cc=nobody@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).