]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
locale_facets.h (class num_get): Undo reordering of do_get virtual functions.
authorJason Merrill <jason@redhat.com>
Thu, 23 Feb 2012 22:14:56 +0000 (17:14 -0500)
committerJason Merrill <jason@gcc.gnu.org>
Thu, 23 Feb 2012 22:14:56 +0000 (17:14 -0500)
* include/bits/locale_facets.h (class num_get): Undo reordering of
do_get virtual functions.

From-SVN: r184530

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

index eff982f4a03b636e87b96f1a619788820ae0503b..a1ec1d12c08354fa87d886a12a5d68437b7e4721 100644 (file)
@@ -1,3 +1,8 @@
+2012-02-23  Jason Merrill  <jason@redhat.com>
+
+       * include/bits/locale_facets.h (class num_get): Undo reordering of
+       do_get virtual functions.
+
 2012-02-14  Edward Smith-Rowland  <3dw4rd@verizon.net>
 
        * testsuite/26_numerics/random/
index 3b3139f9a824750ba9eb874e2aaa5e3c03bb5017..dc95f5a7551789e545d9e54c5bbb0137404e0528 100644 (file)
@@ -2168,6 +2168,9 @@ _GLIBCXX_BEGIN_NAMESPACE_LDBL
        *  @param  __v  Value to format and insert.
        *  @return  Iterator after reading.
       */
+      virtual iter_type
+      do_get(iter_type, iter_type, ios_base&, ios_base::iostate&, bool&) const;
+
       virtual iter_type
       do_get(iter_type __beg, iter_type __end, ios_base& __io,
             ios_base::iostate& __err, long& __v) const
@@ -2200,9 +2203,6 @@ _GLIBCXX_BEGIN_NAMESPACE_LDBL
       { return _M_extract_int(__beg, __end, __io, __err, __v); }
 #endif
 
-      virtual iter_type
-      do_get(iter_type, iter_type, ios_base&, ios_base::iostate&, bool&) const;
-
       virtual iter_type
       do_get(iter_type, iter_type, ios_base&, ios_base::iostate&, float&) const;