diff options
author | ljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-23 16:20:46 +0000 |
---|---|---|
committer | ljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-23 16:20:46 +0000 |
commit | ebefd7d95bfa324ae8d05a97c97897daf4eddd0d (patch) | |
tree | e76143e0808e7e3ff276c18a14c0b39ad549d744 /libstdc++-v3/config | |
parent | f4b2cef9d6f5e78dfabd975e72ce46e9a48063ee (diff) | |
download | gcc-ebefd7d95bfa324ae8d05a97c97897daf4eddd0d.tar.gz |
* config/locale/c_locale_generic.cc: Fix typename usage.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49141 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/config')
-rw-r--r-- | libstdc++-v3/config/locale/c_locale_generic.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/config/locale/c_locale_generic.cc b/libstdc++-v3/config/locale/c_locale_generic.cc index 6644916b8c0..4a8770e5fe5 100644 --- a/libstdc++-v3/config/locale/c_locale_generic.cc +++ b/libstdc++-v3/config/locale/c_locale_generic.cc @@ -168,7 +168,7 @@ namespace std if (__sanity != __s && *__sanity == '\0' && errno == 0) __v = __ld; #else - typedef typename char_traits<char>::int_type int_type; + typedef char_traits<char>::int_type int_type; long double __ld; int __p = sscanf(__s, "%Lf", &__ld); if (__p && static_cast<int_type>(__p) != char_traits<char>::eof()) |