diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2005-01-07 19:34:46 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2005-01-07 19:34:46 +0000 |
commit | 825bd0e1e8f9f76c2cbe52e9ebe4fd15bcd701f7 (patch) | |
tree | 2a9d2695a75fabe6bf837b6f19e0c7c5e5fa5e9a /libstdc++-v3/src | |
parent | 5aa56f9d8f55f8575046ee7c0059c53e0337906b (diff) | |
download | gcc-825bd0e1e8f9f76c2cbe52e9ebe4fd15bcd701f7.zip gcc-825bd0e1e8f9f76c2cbe52e9ebe4fd15bcd701f7.tar.gz gcc-825bd0e1e8f9f76c2cbe52e9ebe4fd15bcd701f7.tar.bz2 |
acinclude.m4: Remove CCODECVT_H.
2005-01-07 Benjamin Kosnik <bkoz@redhat.com>
* acinclude.m4: Remove CCODECVT_H.
* configure: Regenerate.
* include/Makefile.am (host_headers_extra): Move to...
(ext_headers): ...here.
* include/Makefile.in: Regenerate.
* include/ext/enc_filebuf: Remove enc_filebuf, consolidate
enc_traits to...
* config/locale/ieee_1003.1-2001/codecvt_specializations.h: Move...
* include/ext/codecvt_specializations.h: ...here. Remove
_GLIBCXX_USE___ENC_TRAITS.
(__enc_traits): To __encoding_state, put in __gnu_cxx namespace.
(enc_char_traits): To __encoding_char_traits, put in __gnu_cxx
namespace.
* config/locale/generic/codecvt_specializations.h: Remove.
* include/bits/codecvt.h: Remove codecvt_specializations.h include.
* src/codecvt.cc: Remove __enc_traits::_S_max_size.
From-SVN: r93062
Diffstat (limited to 'libstdc++-v3/src')
-rw-r--r-- | libstdc++-v3/src/codecvt.cc | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/libstdc++-v3/src/codecvt.cc b/libstdc++-v3/src/codecvt.cc index 2010593..7634225 100644 --- a/libstdc++-v3/src/codecvt.cc +++ b/libstdc++-v3/src/codecvt.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2000, 2002, 2004 Free Software Foundation, Inc. +// Copyright (C) 2000, 2002, 2004, 2005 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -25,7 +25,7 @@ // invalidate any other reasons why the executable file might be covered by // the GNU General Public License. -// Written by Benjamin Kosnik <bkoz@cygnus.com> +// Written by Benjamin Kosnik <bkoz@redhat.com> #include <locale> @@ -38,11 +38,6 @@ namespace std locale::id codecvt<wchar_t, char, mbstate_t>::id; #endif -#ifdef _GLIBCXX_USE___ENC_TRAITS - // Definitions for static const data members of __enc_traits. - const int __enc_traits::_S_max_size; -#endif - codecvt<char, char, mbstate_t>:: codecvt(size_t __refs) : __codecvt_abstract_base<char, char, mbstate_t>(__refs), |