From 2acd1d6716959b99e751cf85a7c47aaa383e937f Mon Sep 17 00:00:00 2001 From: Ben Woosley Date: Tue, 5 Jun 2018 02:10:50 -0700 Subject: Drop uint 256 not operator All the other operators are integer or bit operations, and this is unused apart from tests. --- src/arith_uint256.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/arith_uint256.h') diff --git a/src/arith_uint256.h b/src/arith_uint256.h index 3f4cc8c2bf..e4c7575e2d 100644 --- a/src/arith_uint256.h +++ b/src/arith_uint256.h @@ -64,14 +64,6 @@ public: explicit base_uint(const std::string& str); - bool operator!() const - { - for (int i = 0; i < WIDTH; i++) - if (pn[i] != 0) - return false; - return true; - } - const base_uint operator~() const { base_uint ret; -- cgit v1.2.3