locale_facets.h (class num_get): Undo reordering of do_get virtual functions.

* include/bits/locale_facets.h (class num_get): Undo reordering of
	do_get virtual functions.

From-SVN: r184530
This commit is contained in:
Jason Merrill 2012-02-23 17:14:56 -05:00 committed by Jason Merrill
parent 9ebe314b13
commit 6bfb3eb52e
2 changed files with 8 additions and 3 deletions

View 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/

View 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;