diff options
| author | Ben Woosley <[email protected]> | 2018-06-05 02:10:50 -0700 |
|---|---|---|
| committer | Ben Woosley <[email protected]> | 2018-06-05 02:16:24 -0700 |
| commit | 2acd1d6716959b99e751cf85a7c47aaa383e937f (patch) | |
| tree | 71a50248c17b5b306463d0d189956544ab530382 /src/arith_uint256.h | |
| parent | Merge #13191: Specialized double-SHA256 with 64 byte inputs with SSE4.1 and AVX2 (diff) | |
| download | discoin-2acd1d6716959b99e751cf85a7c47aaa383e937f.tar.xz discoin-2acd1d6716959b99e751cf85a7c47aaa383e937f.zip | |
Drop uint 256 not operator
All the other operators are integer or bit operations, and this is unused
apart from tests.
Diffstat (limited to 'src/arith_uint256.h')
| -rw-r--r-- | src/arith_uint256.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/arith_uint256.h b/src/arith_uint256.h index 3f4cc8c2b..e4c7575e2 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; |