diff options
Diffstat (limited to 'libphobos/src/std/internal/math')
-rw-r--r-- | libphobos/src/std/internal/math/biguintcore.d | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libphobos/src/std/internal/math/biguintcore.d b/libphobos/src/std/internal/math/biguintcore.d index 6a93e0a..d5c4768 100644 --- a/libphobos/src/std/internal/math/biguintcore.d +++ b/libphobos/src/std/internal/math/biguintcore.d @@ -813,7 +813,7 @@ public: // If wantSub is false, return x + y, leaving sign unchanged. // If wantSub is true, return abs(x - y), negating sign if x<y - static BigUint addOrSub(scope BigUint x, scope BigUint y, bool wantSub, bool *sign) + static BigUint addOrSub(scope BigUint x, scope BigUint y, bool wantSub, ref bool sign) pure nothrow @safe { BigUint r; @@ -822,10 +822,10 @@ public: bool negative; // sub returns GC allocated array, can be safely cast to immutable r.data = (() @trusted => cast(immutable) sub(x.data, y.data, &negative))(); - *sign ^= negative; + sign ^= negative; if (r.isZero()) { - *sign = false; + sign = false; } } else |