Use bracket syntax includes ("#include <foo.h>")

This commit is contained in:
practicalswift 2018-05-14 09:51:03 +02:00
parent a589f536b5
commit 906bee8e5f
5 changed files with 19 additions and 19 deletions

View File

@ -2,11 +2,11 @@
// Distributed under the MIT software license, see the accompanying // Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php. // file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "bench.h" #include <bench/bench.h>
#include "uint256.h" #include <uint256.h>
#include "random.h" #include <random.h>
#include "consensus/merkle.h" #include <consensus/merkle.h>
static void MerkleRoot(benchmark::State& state) static void MerkleRoot(benchmark::State& state)
{ {

View File

@ -7,8 +7,8 @@
#include <x86intrin.h> #include <x86intrin.h>
#endif #endif
#include "crypto/sha256.h" #include <crypto/sha256.h>
#include "crypto/common.h" #include <crypto/common.h>
namespace sha256d64_avx2 { namespace sha256d64_avx2 {
namespace { namespace {

View File

@ -7,8 +7,8 @@
#include <x86intrin.h> #include <x86intrin.h>
#endif #endif
#include "crypto/sha256.h" #include <crypto/sha256.h>
#include "crypto/common.h" #include <crypto/common.h>
namespace sha256d64_sse41 { namespace sha256d64_sse41 {
namespace { namespace {

View File

@ -1,9 +1,9 @@
#include <boost/test/unit_test.hpp> #include <boost/test/unit_test.hpp>
#include "stdlib.h" #include <stdlib.h>
#include "rpc/blockchain.h" #include <rpc/blockchain.h>
#include "test/test_bitcoin.h" #include <test/test_bitcoin.h>
/* Equality between doubles is imprecise. Comparison should be done /* Equality between doubles is imprecise. Comparison should be done
* with a small threshold of tolerance, rather than exact equality. * with a small threshold of tolerance, rather than exact equality.

View File

@ -2,14 +2,14 @@
// Distributed under the MIT software license, see the accompanying // Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php. // file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "wallet/wallet.h" #include <wallet/wallet.h>
#include "wallet/coinselection.h" #include <wallet/coinselection.h>
#include "wallet/coincontrol.h" #include <wallet/coincontrol.h>
#include "amount.h" #include <amount.h>
#include "primitives/transaction.h" #include <primitives/transaction.h>
#include "random.h" #include <random.h>
#include "test/test_bitcoin.h" #include <test/test_bitcoin.h>
#include "wallet/test/wallet_test_fixture.h" #include <wallet/test/wallet_test_fixture.h>
#include <boost/test/unit_test.hpp> #include <boost/test/unit_test.hpp>
#include <random> #include <random>