Commit b206658a by Paolo Carlini Committed by Paolo Carlini

locale_facets.tcc (collate::do_transform): Adjust implicit typename.

2001-12-27  Paolo Carlini  <pcarlini@unitus.it>

	* include/bits/locale_facets.tcc (collate::do_transform):
	Adjust implicit typename.
	* config/locale/messages_members_generic.h (messages::open,
	messages::do_open, messages::do_get): Adjust implicit typename.
	* config/locale/messages_members_gnu.h (messages::open,
	messages::do_open, messages::do_get): Adjust Implicit typename.
	* config/locale/messages_members_ieee_1003.1-200x.h (messages::open,
	messages::do_open, messages::do_get): Adjust implicit typename.

From-SVN: r48327
parent 110fa837
2001-12-27 Paolo Carlini <pcarlini@unitus.it>
* include/bits/locale_facets.tcc (collate::do_transform):
Adjust implicit typename.
* config/locale/messages_members_generic.h (messages::open,
messages::do_open, messages::do_get): Adjust implicit typename.
* config/locale/messages_members_gnu.h (messages::open,
messages::do_open, messages::do_get): Adjust Implicit typename.
* config/locale/messages_members_ieee_1003.1-200x.h (messages::open,
messages::do_open, messages::do_get): Adjust implicit typename.
2001-12-27 Phil Edwards <pme@gcc.gnu.org> 2001-12-27 Phil Edwards <pme@gcc.gnu.org>
PR libstdc++/3829 PR libstdc++/3829
......
...@@ -35,19 +35,19 @@ ...@@ -35,19 +35,19 @@
// Non-virtual member functions. // Non-virtual member functions.
template<typename _CharT> template<typename _CharT>
messages<_CharT>::catalog typename messages<_CharT>::catalog
messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc, messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc,
const char*) const const char*) const
{ return this->do_open(__s, __loc); } { return this->do_open(__s, __loc); }
// Virtual member functions. // Virtual member functions.
template<typename _CharT> template<typename _CharT>
messages<_CharT>::catalog typename messages<_CharT>::catalog
messages<_CharT>::do_open(const basic_string<char>&, const locale&) const messages<_CharT>::do_open(const basic_string<char>&, const locale&) const
{ return 0; } { return 0; }
template<typename _CharT> template<typename _CharT>
messages<_CharT>::string_type typename messages<_CharT>::string_type
messages<_CharT>::do_get(catalog, int, int, messages<_CharT>::do_get(catalog, int, int,
const string_type& __dfault) const const string_type& __dfault) const
{ return __dfault; } { return __dfault; }
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
// Non-virtual member functions. // Non-virtual member functions.
template<typename _CharT> template<typename _CharT>
messages<_CharT>::catalog typename messages<_CharT>::catalog
messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc, messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc,
const char* __dir) const const char* __dir) const
{ {
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
} }
template<typename _CharT> template<typename _CharT>
messages<_CharT>::catalog typename messages<_CharT>::catalog
messages<_CharT>::do_open(const basic_string<char>& __s, messages<_CharT>::do_open(const basic_string<char>& __s,
const locale&) const const locale&) const
{ {
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
} }
template<typename _CharT> template<typename _CharT>
messages<_CharT>::string_type typename messages<_CharT>::string_type
messages<_CharT>::do_get(catalog, int, int, messages<_CharT>::do_get(catalog, int, int,
const string_type& __dfault) const const string_type& __dfault) const
{ {
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
// Non-virtual member functions. // Non-virtual member functions.
template<typename _CharT> template<typename _CharT>
messages<_CharT>::catalog typename messages<_CharT>::catalog
messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc, messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc,
const char*) const const char*) const
{ return this->do_open(__s, __loc); } { return this->do_open(__s, __loc); }
...@@ -46,13 +46,13 @@ ...@@ -46,13 +46,13 @@
{ } { }
template<typename _CharT> template<typename _CharT>
messages<_CharT>::catalog typename messages<_CharT>::catalog
messages<_CharT>::do_open(const basic_string<char>& __s, messages<_CharT>::do_open(const basic_string<char>& __s,
const locale&) const const locale&) const
{ return reinterpret_cast<catalog>(catopen(__s.c_str(), NL_CAT_LOCALE)); } { return reinterpret_cast<catalog>(catopen(__s.c_str(), NL_CAT_LOCALE)); }
template<typename _CharT> template<typename _CharT>
messages<_CharT>::string_type typename messages<_CharT>::string_type
messages<_CharT>::do_get(catalog __c, int __setid, int __msgid, messages<_CharT>::do_get(catalog __c, int __setid, int __msgid,
const string_type& __dfault) const const string_type& __dfault) const
{ {
......
...@@ -1974,7 +1974,7 @@ namespace std ...@@ -1974,7 +1974,7 @@ namespace std
} }
template<typename _CharT> template<typename _CharT>
collate<_CharT>::string_type typename collate<_CharT>::string_type
collate<_CharT>:: collate<_CharT>::
do_transform(const _CharT* __lo, const _CharT* __hi) const do_transform(const _CharT* __lo, const _CharT* __hi) const
{ {
......
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