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/test/arith_uint256_tests.cpp | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/test') diff --git a/src/test/arith_uint256_tests.cpp b/src/test/arith_uint256_tests.cpp index 13ec19834a..8644aea371 100644 --- a/src/test/arith_uint256_tests.cpp +++ b/src/test/arith_uint256_tests.cpp @@ -198,13 +198,6 @@ BOOST_AUTO_TEST_CASE( shifts ) { // "<<" ">>" "<<=" ">>=" BOOST_AUTO_TEST_CASE( unaryOperators ) // ! ~ - { - BOOST_CHECK(!ZeroL); - BOOST_CHECK(!(!OneL)); - for (unsigned int i = 0; i < 256; ++i) - BOOST_CHECK(!(!(OneL<