Commit ca2ceadd by Jeffrey D. Oldham Committed by Gerald Pfeifer

* config/locale/generic/messages_members.h

	(messages_byname<_CharT>::messages_byname): Use this-> to refer to
	unqualified members of base clasess.

From-SVN: r61416
parent f981519d
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> 2003-01-16 Mark Mitchell <mark@codesourcery.com>
Jeffrey Oldham <oldham@codesourcery.com> Jeffrey Oldham <oldham@codesourcery.com>
......
...@@ -76,6 +76,6 @@ ...@@ -76,6 +76,6 @@
messages_byname<_CharT>::messages_byname(const char* __s, size_t __refs) messages_byname<_CharT>::messages_byname(const char* __s, size_t __refs)
: messages<_CharT>(__refs) : messages<_CharT>(__refs)
{ {
_S_destroy_c_locale(_M_c_locale_messages); _S_destroy_c_locale(this->_M_c_locale_messages);
_S_create_c_locale(_M_c_locale_messages, __s); _S_create_c_locale(this->_M_c_locale_messages, __s);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment