]> gcc.gnu.org Git - gcc.git/commitdiff
locale_facets.tcc (num_get<_CharT, [...]): Add missing typename keyword.
authorLoren J. Rittle <ljrittle@acm.org>
Fri, 17 Nov 2000 05:38:04 +0000 (05:38 +0000)
committerGabriel Dos Reis <gdr@gcc.gnu.org>
Fri, 17 Nov 2000 05:38:04 +0000 (05:38 +0000)
        * include/bits/locale_facets.tcc (num_get<_CharT,
          _InIter>::do_get(...)): Add missing typename keyword.

From-SVN: r37513

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/locale_facets.tcc

index 112eb7050ec683b5344acc92972eb3713a57d4f1..242f4313f8533692ee201c5de3f7c8a85e52b9b6 100644 (file)
@@ -1,3 +1,8 @@
+2000-11-16  Loren J. Rittle  <ljrittle@acm.org>
+
+        * include/bits/locale_facets.tcc (num_get<_CharT,
+          _InIter>::do_get(...)): Add missing typename keyword.
+
 2000-11-16  Mark Mitchell  <mark@codesourcery.com>
 
        * acinclude.m4 (GLIBCPP_ENABLE_CSTDIO): Make 
index 3a404dd7ec154f2f2dfbe9e04785952593f8f96a..ad45c3374df37eb474b94b4c3e47292e67d7ea51 100644 (file)
@@ -684,7 +684,8 @@ namespace std
       long double __ld;
       int __p = sscanf(__xtrc, __conv, &__ld);
       if (__p
-          && static_cast<__traits_type::int_type>(__p) != __traits_type::eof())
+          && static_cast<typename __traits_type::int_type>(__p)
+        != __traits_type::eof())
         __v = __ld;
       else
         __err |= ios_base::failbit;
This page took 0.073494 seconds and 5 git commands to generate.