diff options
| author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-16 20:36:45 +0000 |
|---|---|---|
| committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-16 20:36:45 +0000 |
| commit | 98940df34193c00e9602033dbd084050df5d217d (patch) | |
| tree | 365c36fdec3cb71424580006cc024f75fba50ed3 | |
| parent | 754f16e11096f676fcba6c718d04d8fb1d32750e (diff) | |
| download | ppe42-gcc-98940df34193c00e9602033dbd084050df5d217d.tar.gz ppe42-gcc-98940df34193c00e9602033dbd084050df5d217d.zip | |
2003-10-16 Paolo Carlini <pcarlini@suse.de>
* src/locale.cc (locale::locale(const char*)): ... one
more comparison missed in the previous commit.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72574 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
| -rw-r--r-- | libstdc++-v3/src/locale.cc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 258a5700a10..494f5bf4e40 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2003-10-16 Paolo Carlini <pcarlini@suse.de> + + * src/locale.cc (locale::locale(const char*)): ... one + more comparison missed in the previous commit. + 2003-10-16 Benjamin Kosnik <bkoz@redhat.com> * acconfig.h: Add HAVE_DRAND48 and HAVE_ISATTY. diff --git a/libstdc++-v3/src/locale.cc b/libstdc++-v3/src/locale.cc index c6525405211..80bce52b47d 100644 --- a/libstdc++-v3/src/locale.cc +++ b/libstdc++-v3/src/locale.cc @@ -285,7 +285,7 @@ namespace std } // ... otherwise either an additional instance of // the "C" locale or LANG. - else if (std::strcmp(__res.c_str(), "C") == 0) + else if (__res == "C") (_M_impl = _S_classic)->_M_add_reference(); else _M_impl = new _Impl(__res.c_str(), 1); |

