Skip to content

Commit

Permalink
void return for clarity
Browse files Browse the repository at this point in the history
nickgerrets committed Dec 4, 2023
1 parent 5c53d4d commit 37244ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/types/hugeint.cpp
Original file line number Diff line number Diff line change
@@ -444,7 +444,7 @@ hugeint_t Hugeint::Divide(hugeint_t lhs, hugeint_t rhs) {

hugeint_t Hugeint::Modulo(hugeint_t lhs, hugeint_t rhs) {
hugeint_t remainder;
Hugeint::DivMod(lhs, rhs, remainder);
(void)Hugeint::DivMod(lhs, rhs, remainder);
return remainder;
}

0 comments on commit 37244ee

Please sign in to comment.