aboutsummaryrefslogtreecommitdiff
path: root/src/univalue/test/test_json.cpp
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-05-13 10:29:59 +0100
committerfanquake <fanquake@gmail.com>2022-05-13 10:36:05 +0100
commit225e5b57b2ee2bc1acd7f09c89ccccc15ef8c85f (patch)
tree1b79a5a95871654d5c327f9bfd37a45eed7ad1b5 /src/univalue/test/test_json.cpp
parent25dd4d85136c286adf7eca60df89a28d43b313b2 (diff)
parentfac2c796cb4137e025a4a783f7460e5db9c74bc2 (diff)
Merge bitcoin/bitcoin#25113: Bump univalue subtree
f403531f97cb80930e9a8e70a6f0dbde4cc8a866 Squashed 'src/univalue/' changes from a44caf65fe..6c19d050a9 (MacroFake) Pull request description: Only change is some header-shuffling and adding `getInt`. ACKs for top commit: fanquake: ACK fac2c796cb4137e025a4a783f7460e5db9c74bc2 Tree-SHA512: 8bdf7d88ce06f0851f99f30c30fc926a13b79ae72bcebd5e170ed0e1d882b184d9279f96488e234fbe560036e31cb180aa1e5666aebd9833b9a119c6b214fa30
Diffstat (limited to 'src/univalue/test/test_json.cpp')
-rw-r--r--src/univalue/test/test_json.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/univalue/test/test_json.cpp b/src/univalue/test/test_json.cpp
index 2943bae2b1..f8c10238d4 100644
--- a/src/univalue/test/test_json.cpp
+++ b/src/univalue/test/test_json.cpp
@@ -4,9 +4,11 @@
// It reads JSON input from stdin and exits with code 0 if it can be parsed
// successfully. It also pretty prints the parsed JSON value to stdout.
+#include <univalue.h>
+
#include <iostream>
+#include <iterator>
#include <string>
-#include "univalue.h"
using namespace std;