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
// 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)
{

View File

@ -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 {

View File

@ -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 {

View File

@ -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.

View File

@ -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>