diff --git a/src/bigint.cpp b/src/bigint.cpp index 7299f2379c..4c103adce3 100644 --- a/src/bigint.cpp +++ b/src/bigint.cpp @@ -1665,7 +1665,6 @@ int64_t bigint_as_signed(const BigInt *bigint) { return 0; } else if (bigint->digit_count == 1) { if (bigint->is_negative) { - // TODO this code path is untested if (bigint->data.digit <= 9223372036854775808ULL) { return (-((int64_t)(bigint->data.digit - 1))) - 1; } else {