diff options
author | Benjamin Kosnik <bkoz@purist.soma.redhat.com> | 2000-08-29 07:57:10 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-08-29 07:57:10 +0000 |
commit | ffe9f7851edf04aad05b8d5c3489d232fd9547f5 (patch) | |
tree | 754f60285de659efaba94be9c7c4e8cb18673000 /libstdc++-v3/libio/iofwide.c | |
parent | 484fde94394217be93a36c36bf815c4166e511c3 (diff) | |
download | gcc-ffe9f7851edf04aad05b8d5c3489d232fd9547f5.zip gcc-ffe9f7851edf04aad05b8d5c3489d232fd9547f5.tar.gz gcc-ffe9f7851edf04aad05b8d5c3489d232fd9547f5.tar.bz2 |
codecvt.html: Add more bits, format.
2000-08-28 Benjamin Kosnik <bkoz@purist.soma.redhat.com>
* docs/22_locale/codecvt.html: Add more bits, format.
* bits/codecvt.h: Add copy ctor, rename types.
* testsuite/22_locale/codecvt_unicode_char.cc: Tweak.
* libio/iofwide.c: Tweak.
From-SVN: r36032
Diffstat (limited to 'libstdc++-v3/libio/iofwide.c')
-rw-r--r-- | libstdc++-v3/libio/iofwide.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libstdc++-v3/libio/iofwide.c b/libstdc++-v3/libio/iofwide.c index db1a4f1..64bc7c9 100644 --- a/libstdc++-v3/libio/iofwide.c +++ b/libstdc++-v3/libio/iofwide.c @@ -155,6 +155,7 @@ _IO_fwide (fp, mode) cares about systems which changing internal charsets they should come up with a solution for the determination of the currently used internal character set. */ +#if 0 const char *internal_ccs = _G_INTERNAL_CCS; const char *external_ccs = nl_langinfo(CODESET); @@ -164,6 +165,7 @@ _IO_fwide (fp, mode) cc->__cd_in = iconv_open (internal_ccs, external_ccs); if (cc->__cd_in != (iconv_t) -1) cc->__cd_out = iconv_open (external_ccs, internal_ccs); +#endif } # else # error "somehow determine this from LC_CTYPE" |