diff options
Diffstat (limited to 'libstdc++-v3/include/bits/locale_facets.h')
-rw-r--r-- | libstdc++-v3/include/bits/locale_facets.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libstdc++-v3/include/bits/locale_facets.h b/libstdc++-v3/include/bits/locale_facets.h index 7fad2e0e8fa..8108bf0c6fc 100644 --- a/libstdc++-v3/include/bits/locale_facets.h +++ b/libstdc++-v3/include/bits/locale_facets.h @@ -233,12 +233,12 @@ namespace std bool _M_del; __to_type _M_toupper; __to_type _M_tolower; - const mask* _M_ctable; const mask* _M_table; public: static locale::id id; static const size_t table_size = 1 + static_cast<unsigned char>(-1); + static const mask* _S_ctable; explicit ctype(const mask* __table = 0, bool __del = false, size_t __refs = 0); @@ -264,9 +264,9 @@ namespace std table() const throw() { return _M_table; } - const mask* + static const mask* classic_table() throw() - { return _M_ctable; } + { return _S_ctable; } virtual ~ctype(); |