Use bracket syntax includes ("#include <foo.h>")
This commit is contained in:
parent
a589f536b5
commit
906bee8e5f
5 changed files with 19 additions and 19 deletions
|
@ -2,11 +2,11 @@
|
|||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#include "bench.h"
|
||||
#include <bench/bench.h>
|
||||
|
||||
#include "uint256.h"
|
||||
#include "random.h"
|
||||
#include "consensus/merkle.h"
|
||||
#include <uint256.h>
|
||||
#include <random.h>
|
||||
#include <consensus/merkle.h>
|
||||
|
||||
static void MerkleRoot(benchmark::State& state)
|
||||
{
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
#include <x86intrin.h>
|
||||
#endif
|
||||
|
||||
#include "crypto/sha256.h"
|
||||
#include "crypto/common.h"
|
||||
#include <crypto/sha256.h>
|
||||
#include <crypto/common.h>
|
||||
|
||||
namespace sha256d64_avx2 {
|
||||
namespace {
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
#include <x86intrin.h>
|
||||
#endif
|
||||
|
||||
#include "crypto/sha256.h"
|
||||
#include "crypto/common.h"
|
||||
#include <crypto/sha256.h>
|
||||
#include <crypto/common.h>
|
||||
|
||||
namespace sha256d64_sse41 {
|
||||
namespace {
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
#include "stdlib.h"
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "rpc/blockchain.h"
|
||||
#include "test/test_bitcoin.h"
|
||||
#include <rpc/blockchain.h>
|
||||
#include <test/test_bitcoin.h>
|
||||
|
||||
/* Equality between doubles is imprecise. Comparison should be done
|
||||
* with a small threshold of tolerance, rather than exact equality.
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#include "wallet/wallet.h"
|
||||
#include "wallet/coinselection.h"
|
||||
#include "wallet/coincontrol.h"
|
||||
#include "amount.h"
|
||||
#include "primitives/transaction.h"
|
||||
#include "random.h"
|
||||
#include "test/test_bitcoin.h"
|
||||
#include "wallet/test/wallet_test_fixture.h"
|
||||
#include <wallet/wallet.h>
|
||||
#include <wallet/coinselection.h>
|
||||
#include <wallet/coincontrol.h>
|
||||
#include <amount.h>
|
||||
#include <primitives/transaction.h>
|
||||
#include <random.h>
|
||||
#include <test/test_bitcoin.h>
|
||||
#include <wallet/test/wallet_test_fixture.h>
|
||||
|
||||
#include <boost/test/unit_test.hpp>
|
||||
#include <random>
|
||||
|
|
Loading…
Reference in a new issue