diff options
| author | practicalswift <[email protected]> | 2018-05-14 09:51:03 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-06-06 11:09:05 +0200 |
| commit | 906bee8e5f474f8718d02e6f1938f20dcfe3d2cc (patch) | |
| tree | 5cb00fb50275aa72f4a3fd996bab8b37a2e95bf8 /src/bench | |
| parent | Merge #13288: rpc: Remove the need to include rpc/blockchain.cpp in order to ... (diff) | |
| download | discoin-906bee8e5f474f8718d02e6f1938f20dcfe3d2cc.tar.xz discoin-906bee8e5f474f8718d02e6f1938f20dcfe3d2cc.zip | |
Use bracket syntax includes ("#include <foo.h>")
Diffstat (limited to 'src/bench')
| -rw-r--r-- | src/bench/merkle_root.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bench/merkle_root.cpp b/src/bench/merkle_root.cpp index ae2a0a28d..fab12da31 100644 --- a/src/bench/merkle_root.cpp +++ b/src/bench/merkle_root.cpp @@ -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) { |