mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-02 16:23:56 +08:00
* config/locale/generic/messages_members.h
(messages_byname<_CharT>::messages_byname): Use this-> to refer to unqualified members of base clasess. From-SVN: r61416
This commit is contained in:
parent
f981519d5e
commit
ca2ceadd31
@ -1,3 +1,9 @@
|
||||
2003-01-16 Jeffrey D. Oldham <oldham@codesourcery.com>
|
||||
|
||||
* config/locale/generic/messages_members.h
|
||||
(messages_byname<_CharT>::messages_byname): Use this-> to refer to
|
||||
unqualified members of base clasess.
|
||||
|
||||
2003-01-16 Mark Mitchell <mark@codesourcery.com>
|
||||
Jeffrey Oldham <oldham@codesourcery.com>
|
||||
|
||||
|
@ -76,6 +76,6 @@
|
||||
messages_byname<_CharT>::messages_byname(const char* __s, size_t __refs)
|
||||
: messages<_CharT>(__refs)
|
||||
{
|
||||
_S_destroy_c_locale(_M_c_locale_messages);
|
||||
_S_create_c_locale(_M_c_locale_messages, __s);
|
||||
_S_destroy_c_locale(this->_M_c_locale_messages);
|
||||
_S_create_c_locale(this->_M_c_locale_messages, __s);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user