aboutsummaryrefslogtreecommitdiff
path: root/src/util/strencodings.cpp
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-06-09 16:26:55 +0100
committerfanquake <fanquake@gmail.com>2022-07-08 11:06:01 +0100
commit07f2c25d04c39a0074e1d9ee1b24b3e359c8153f (patch)
tree167946c643c37689ecaf75756038cc88c8c43fcf /src/util/strencodings.cpp
parenta7f3479ba3fda4c9fb29bd7080165744c02ee921 (diff)
downloadbitcoin-07f2c25d04c39a0074e1d9ee1b24b3e359c8153f.tar.xz
refactor: add most of src/util to iwyu
These files change infrequently, and not much header shuffling is required. We don't add everything in src/util/ yet, because IWYU makes some dubious suggestions, which I'm going to follow up with upstream.
Diffstat (limited to 'src/util/strencodings.cpp')
-rw-r--r--src/util/strencodings.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/util/strencodings.cpp b/src/util/strencodings.cpp
index 675fe7d2d7..303e19beec 100644
--- a/src/util/strencodings.cpp
+++ b/src/util/strencodings.cpp
@@ -3,17 +3,18 @@
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
+#include <span.h>
#include <util/strencodings.h>
-#include <util/string.h>
-
-#include <tinyformat.h>
#include <algorithm>
#include <array>
-#include <cstdlib>
+#include <cassert>
#include <cstring>
#include <limits>
#include <optional>
+#include <ostream>
+#include <string>
+#include <vector>
static const std::string CHARS_ALPHA_NUM = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";