From 59639106944801ba9a9705f29e25b9fb7080617c Mon Sep 17 00:00:00 2001 From: Paolo Carlini Date: Thu, 29 Apr 2004 22:07:13 +0000 Subject: [PATCH] locale.cc (locale::operator==): Always avoid constructing locale::name(), directly compare pairs of _M_names. 2004-04-29 Paolo Carlini * src/locale.cc (locale::operator==): Always avoid constructing locale::name(), directly compare pairs of _M_names. From-SVN: r81309 --- libstdc++-v3/ChangeLog | 5 +++++ libstdc++-v3/src/locale.cc | 14 +++++++------- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 410070a..f61c644 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2004-04-29 Paolo Carlini + + * src/locale.cc (locale::operator==): Always avoid constructing + locale::name(), directly compare pairs of _M_names. + 2004-04-26 Paolo Carlini * include/bits/istream.tcc: Fix comment. diff --git a/libstdc++-v3/src/locale.cc b/libstdc++-v3/src/locale.cc index 0ed2dbb..af4f34d 100644 --- a/libstdc++-v3/src/locale.cc +++ b/libstdc++-v3/src/locale.cc @@ -70,15 +70,15 @@ namespace std bool locale::operator==(const locale& __rhs) const throw() { - bool __ret = false; + bool __ret = true; if (_M_impl == __rhs._M_impl) - __ret = true; + ; + else if (!std::strcmp(_M_impl->_M_names[0], "*")) + __ret = false; else - { - const string __name = this->name(); - if (__name != "*" && __name == __rhs.name()) - __ret = true; - } + for (size_t __i = 0; __ret && __i < _S_categories_size; ++__i) + __ret = !std::strcmp(_M_impl->_M_names[__i], + __rhs._M_impl->_M_names[__i]); return __ret; } -- 2.7.4