diff --git a/src/bignum/bignum.cc b/src/bignum/bignum.cc index ffceaa9..3cfe26b 100644 --- a/src/bignum/bignum.cc +++ b/src/bignum/bignum.cc @@ -114,6 +114,7 @@ std::pair do_div_mod(digits_type const& lhs, digits_type remainder = lhs; while (!do_less_than(remainder, rhs)) { + // TODO: use `do_halve` to back down after calculate highest multiple digits_type multiple = rhs; digits_type rank; rank.push_back(1);