aboutsummaryrefslogtreecommitdiff
path: root/src/test/fuzz/prevector.cpp
diff options
context:
space:
mode:
authorMarcoFalke <[email protected]>2020-04-16 13:11:54 -0400
committerMarcoFalke <[email protected]>2020-04-16 13:32:36 -0400
commitfac5c373006a9e4bcbb56843bb85f1aca4d87599 (patch)
tree0976fd8c1e4180bd9ae5edf45b3bca58146771d2 /src/test/fuzz/prevector.cpp
parentMerge #17669: tests: have coins simulation test also use CCoinsViewDB (diff)
downloaddiscoin-fac5c373006a9e4bcbb56843bb85f1aca4d87599.tar.xz
discoin-fac5c373006a9e4bcbb56843bb85f1aca4d87599.zip
scripted-diff: Sort test includes
-BEGIN VERIFY SCRIPT- # Mark all lines with #includes sed -i --regexp-extended -e 's/(#include <.*>)/\1 /g' $(git grep -l '#include' ./src/bench/ ./src/test ./src/wallet/test/) # Sort all marked lines git diff -U0 | ./contrib/devtools/clang-format-diff.py -p1 -i -v -END VERIFY SCRIPT-
Diffstat (limited to 'src/test/fuzz/prevector.cpp')
-rw-r--r--src/test/fuzz/prevector.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/fuzz/prevector.cpp b/src/test/fuzz/prevector.cpp
index 0e51ee3c9..64920f4af 100644
--- a/src/test/fuzz/prevector.cpp
+++ b/src/test/fuzz/prevector.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 <test/fuzz/fuzz.h>
#include <test/fuzz/FuzzedDataProvider.h>
+#include <test/fuzz/fuzz.h>
-#include <vector>
#include <prevector.h>
+#include <vector>
#include <reverse_iterator.h>
#include <serialize.h>