Commit f7ba331c by Paolo Carlini Committed by Paolo Carlini

2003-11-21 Paolo Carlini <pcarlini@suse.de>

	* config/locale/gnu/monetary_members.cc
	(money_base::_S_construct_pattern): Factor out an assignment.

From-SVN: r73816
parent 5c89246d
2003-11-21 Paolo Carlini <pcarlini@suse.de> 2003-11-21 Paolo Carlini <pcarlini@suse.de>
* config/locale/gnu/monetary_members.cc
(money_base::_S_construct_pattern): Factor out an assignment.
2003-11-21 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/12882 (partial) PR libstdc++/12882 (partial)
* acinclude.m4 (GLIBCXX_CHECK_LFS): Check fseeko64 * acinclude.m4 (GLIBCXX_CHECK_LFS): Check fseeko64
and ftello64 too. and ftello64 too.
......
...@@ -69,16 +69,15 @@ namespace std ...@@ -69,16 +69,15 @@ namespace std
if (__precedes) if (__precedes)
{ {
__ret.field[1] = symbol; __ret.field[1] = symbol;
__ret.field[2] = space;
__ret.field[3] = value; __ret.field[3] = value;
} }
else else
{ {
__ret.field[1] = value; __ret.field[1] = value;
__ret.field[2] = space;
__ret.field[3] = symbol; __ret.field[3] = symbol;
} }
__ret.field[0] = sign; __ret.field[0] = sign;
__ret.field[2] = space;
} }
else else
{ {
......
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