From 39605a79656802c1c0986286910b1536ac7a25a9 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 25 Feb 2019 16:36:18 -0500 Subject: [PATCH] delete incorrect TODO comment The code path is tested by behavior tests. Thanks to various contributors, but mostly Marc Tiehuis, bigint.cpp now has full coverage. closes #405 --- src/bigint.cpp | 1 - 1 file changed, 1 deletion(-) 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 {