diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-05-14 09:51:03 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-06-06 11:09:05 +0200 |
commit | 906bee8e5f474f8718d02e6f1938f20dcfe3d2cc (patch) | |
tree | 5cb00fb50275aa72f4a3fd996bab8b37a2e95bf8 /src/bench/merkle_root.cpp | |
parent | a589f536b5e15daf3ac6ffcc137a146514c81967 (diff) |
Use bracket syntax includes ("#include <foo.h>")
Diffstat (limited to 'src/bench/merkle_root.cpp')
-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 ae2a0a28dc..fab12da311 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) { |