mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 03:47:29 -03:00
Fix iwyu
This commit is contained in:
parent
faad673716
commit
fa875349e2
8 changed files with 3 additions and 6 deletions
|
@ -65,6 +65,7 @@ if [ "${RUN_TIDY}" = "true" ]; then
|
|||
" src/util/serfloat.cpp"\
|
||||
" src/util/spanparsing.cpp"\
|
||||
" src/util/strencodings.cpp"\
|
||||
" src/util/string.cpp"\
|
||||
" src/util/syserror.cpp"\
|
||||
" src/util/url.cpp"\
|
||||
" -p . ${MAKEJOBS} -- -Xiwyu --cxx17ns -Xiwyu --mapping_file=${BASE_BUILD_DIR}/bitcoin-$HOST/contrib/devtools/iwyu/bitcoin.core.imp"
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
#include <logging.h>
|
||||
#include <policy/feerate.h>
|
||||
#include <policy/policy.h>
|
||||
#include <script/standard.h>
|
||||
#include <tinyformat.h>
|
||||
#include <util/error.h>
|
||||
#include <util/moneystr.h>
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
#include <util/check.h>
|
||||
#include <util/time.h>
|
||||
|
||||
#include <algorithm>
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
#include <set>
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
#define BITCOIN_THREADINTERRUPT_H
|
||||
|
||||
#include <sync.h>
|
||||
#include <threadsafety.h>
|
||||
|
||||
#include <atomic>
|
||||
#include <chrono>
|
||||
|
|
|
@ -6,12 +6,10 @@
|
|||
#include <util/bip32.h>
|
||||
#include <util/strencodings.h>
|
||||
|
||||
#include <algorithm>
|
||||
#include <cstdint>
|
||||
#include <cstdio>
|
||||
#include <sstream>
|
||||
|
||||
|
||||
bool ParseHDKeypath(const std::string& keypath_str, std::vector<uint32_t>& keypath)
|
||||
{
|
||||
std::stringstream ss(keypath_str);
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
#include <key_io.h>
|
||||
#include <pubkey.h>
|
||||
#include <script/standard.h>
|
||||
#include <serialize.h>
|
||||
#include <uint256.h>
|
||||
#include <util/message.h>
|
||||
#include <util/strencodings.h>
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
#include <span.h>
|
||||
#include <util/strencodings.h>
|
||||
|
||||
#include <algorithm>
|
||||
#include <array>
|
||||
#include <cassert>
|
||||
#include <cstring>
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
|
||||
#include <util/spanparsing.h>
|
||||
|
||||
#include <algorithm>
|
||||
#include <array>
|
||||
#include <cstdint>
|
||||
#include <cstring>
|
||||
|
|
Loading…
Reference in a new issue