aboutsummaryrefslogtreecommitdiff
path: root/src/bench/merkle_root.cpp
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2018-05-14 09:51:03 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2018-06-06 11:09:05 +0200
commit906bee8e5f474f8718d02e6f1938f20dcfe3d2cc (patch)
tree5cb00fb50275aa72f4a3fd996bab8b37a2e95bf8 /src/bench/merkle_root.cpp
parenta589f536b5e15daf3ac6ffcc137a146514c81967 (diff)
downloadbitcoin-906bee8e5f474f8718d02e6f1938f20dcfe3d2cc.tar.xz
Use bracket syntax includes ("#include <foo.h>")
Diffstat (limited to 'src/bench/merkle_root.cpp')
-rw-r--r--src/bench/merkle_root.cpp8
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)
{