Commit 6bfb3eb5 by Jason Merrill Committed by Jason Merrill

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
parent 9ebe314b
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> 2012-02-14 Edward Smith-Rowland <3dw4rd@verizon.net>
* testsuite/26_numerics/random/ * testsuite/26_numerics/random/
......
...@@ -2169,6 +2169,9 @@ _GLIBCXX_BEGIN_NAMESPACE_LDBL ...@@ -2169,6 +2169,9 @@ _GLIBCXX_BEGIN_NAMESPACE_LDBL
* @return Iterator after reading. * @return Iterator after reading.
*/ */
virtual iter_type 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, do_get(iter_type __beg, iter_type __end, ios_base& __io,
ios_base::iostate& __err, long& __v) const ios_base::iostate& __err, long& __v) const
{ return _M_extract_int(__beg, __end, __io, __err, __v); } { return _M_extract_int(__beg, __end, __io, __err, __v); }
...@@ -2201,9 +2204,6 @@ _GLIBCXX_BEGIN_NAMESPACE_LDBL ...@@ -2201,9 +2204,6 @@ _GLIBCXX_BEGIN_NAMESPACE_LDBL
#endif #endif
virtual iter_type 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; do_get(iter_type, iter_type, ios_base&, ios_base::iostate&, float&) const;
virtual iter_type virtual iter_type
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment