value_t::in_place_unround wasn't doing it in-place
This commit is contained in:
parent
ec62e70997
commit
fe6055bf16
1 changed files with 2 additions and 2 deletions
|
|
@ -1358,10 +1358,10 @@ void value_t::in_place_unround()
|
||||||
case INTEGER:
|
case INTEGER:
|
||||||
return;
|
return;
|
||||||
case AMOUNT:
|
case AMOUNT:
|
||||||
as_amount_lval().unrounded();
|
as_amount_lval().in_place_unround();
|
||||||
return;
|
return;
|
||||||
case BALANCE:
|
case BALANCE:
|
||||||
as_balance_lval().unrounded();
|
as_balance_lval().in_place_unround();
|
||||||
return;
|
return;
|
||||||
case SEQUENCE: {
|
case SEQUENCE: {
|
||||||
value_t temp;
|
value_t temp;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue