aboutsummaryrefslogtreecommitdiff
path: root/src/test/uint256_tests.cpp
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2019-06-24 17:22:28 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2019-06-26 20:37:48 +0200
commit9a841696c1e7147e259e5a387566e461abc144ec (patch)
tree4d92a9b295fc08f0a1afa327aa82a1da20f667dc /src/test/uint256_tests.cpp
parent1b28bca04c2767c8bca21d66bd6978f358b0a96a (diff)
downloadbitcoin-9a841696c1e7147e259e5a387566e461abc144ec.tar.xz
tests: Reduce compilation time and unneccessary recompiles by removing unused includes in tests
Diffstat (limited to 'src/test/uint256_tests.cpp')
-rw-r--r--src/test/uint256_tests.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/test/uint256_tests.cpp b/src/test/uint256_tests.cpp
index c1749fb856..33a118c2bb 100644
--- a/src/test/uint256_tests.cpp
+++ b/src/test/uint256_tests.cpp
@@ -1,19 +1,17 @@
// Copyright (c) 2011-2019 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
+
#include <arith_uint256.h>
+#include <streams.h>
#include <uint256.h>
#include <version.h>
#include <test/setup_common.h>
#include <boost/test/unit_test.hpp>
-#include <stdint.h>
#include <sstream>
#include <iomanip>
-#include <limits>
-#include <cmath>
#include <string>
-#include <stdio.h>
BOOST_FIXTURE_TEST_SUITE(uint256_tests, BasicTestingSetup)