messages_members.h: Correct conditional.
2002-03-25 Benjamin Kosnik <bkoz@redhat.com> Jakub Jelinek <jakub@redhat.com> * config/locale/gnu/messages_members.h: Correct conditional. * config/locale/gnu/messages_members.cc: Same. * config/locale/gnu/time_members.cc: Same. From-SVN: r51332
This commit is contained in:
parent
7b3e519838
commit
99ffa1e37a
@ -1,3 +1,10 @@
|
||||
2002-03-25 Benjamin Kosnik <bkoz@redhat.com>
|
||||
Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* config/locale/gnu/messages_members.h: Correct conditional.
|
||||
* config/locale/gnu/messages_members.cc: Same.
|
||||
* config/locale/gnu/time_members.cc: Same.
|
||||
|
||||
2002-03-25 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
|
||||
Paolo Carlini <pcarlini@unitus.it>
|
||||
|
||||
@ -95,7 +102,7 @@
|
||||
* configure.in: Add comments pointing the way for autoconf 2.5x.
|
||||
* aclocal.m4, config.h.in, configure: Regenerate.
|
||||
|
||||
2002-03-15 Philipp Thomas <pthomas@suse.de>
|
||||
2002-03-18 Philipp Thomas <pthomas@suse.de>
|
||||
|
||||
* include/backward/hash_map.h: hash, hashtable, hash_map and
|
||||
hash_multimap are in namespace __gnu_cxx.
|
||||
|
@ -42,7 +42,7 @@ namespace std
|
||||
string
|
||||
messages<char>::do_get(catalog, int, int, const string& __dfault) const
|
||||
{
|
||||
#if __GLIBC__ >= 2 && __GLIBC_MINOR__ > 2
|
||||
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)
|
||||
__c_locale __old = __uselocale(_M_c_locale_messages);
|
||||
const char* __msg = const_cast<const char*>(gettext(__dfault.c_str()));
|
||||
__uselocale(__old);
|
||||
|
@ -59,7 +59,7 @@
|
||||
messages<_CharT>::do_get(catalog, int, int,
|
||||
const string_type& __dfault) const
|
||||
{
|
||||
#if __GLIBC__ >= 2 && __GLIBC_MINOR__ > 2
|
||||
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)
|
||||
__c_locale __old = __uselocale(_M_c_locale_messages);
|
||||
char* __msg = gettext(_M_convert_to_char(__dfault));
|
||||
__uselocale(__old);
|
||||
|
@ -44,7 +44,7 @@ namespace std
|
||||
_M_put_helper(char* __s, size_t __maxlen, const char* __format,
|
||||
const tm* __tm) const
|
||||
{
|
||||
#if __GLIBC__ >= 2 && __GLIBC_MINOR__ > 2
|
||||
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)
|
||||
if (_M_c_locale_timepunct)
|
||||
__strftime_l(__s, __maxlen, _M_c_locale_timepunct, __format, __tm);
|
||||
else
|
||||
@ -188,7 +188,7 @@ namespace std
|
||||
_M_put_helper(wchar_t* __s, size_t __maxlen, const wchar_t* __format,
|
||||
const tm* __tm) const
|
||||
{
|
||||
#if __GLIBC__ >= 2 && __GLIBC_MINOR__ > 2
|
||||
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)
|
||||
if (_M_c_locale_timepunct)
|
||||
__wcsftime_l(__s, __maxlen, _M_c_locale_timepunct, __format, __tm);
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user