Skip to content

Commit

Permalink
vm: silence unused variables differently
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjbq7 committed May 6, 2024
1 parent c7b4b8f commit 32a375e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vm/bignum.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ void factor_vm::bignum_divide(bignum* numerator, bignum* denominator,
bignum** quotient, bignum** remainder) {
if (BIGNUM_ZERO_P(denominator)) {
divide_by_zero_error();
(*quotient) = denominator;
(*remainder) = denominator;
(void) quotient;
(void) remainder;
return;
}
if (BIGNUM_ZERO_P(numerator)) {
Expand Down

0 comments on commit 32a375e

Please sign in to comment.