diff options
author | fanquake <fanquake@gmail.com> | 2023-01-20 11:55:29 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2023-01-20 11:55:29 +0000 |
commit | af862661654966d5de614755ab9bd1b5913e0959 (patch) | |
tree | c8e9c8533540a0672723a840b58844623c098308 | |
parent | 398768769f85cc1b6ff212ed931646b59fa1acd6 (diff) |
23.x Add missing includes to fix gcc-13 compile error
Additional include fixes are required to make the 23.x branch compile
using GCC 13.
-rw-r--r-- | src/util/bip32.h | 1 | ||||
-rw-r--r-- | src/util/string.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/util/bip32.h b/src/util/bip32.h index 8f86f2aaa6..b1d53616a4 100644 --- a/src/util/bip32.h +++ b/src/util/bip32.h @@ -6,6 +6,7 @@ #define BITCOIN_UTIL_BIP32_H #include <attributes.h> +#include <cstdint> #include <string> #include <vector> diff --git a/src/util/string.h b/src/util/string.h index a3b8df8d78..5f4859f1d7 100644 --- a/src/util/string.h +++ b/src/util/string.h @@ -9,6 +9,7 @@ #include <algorithm> #include <array> +#include <cstdint> #include <cstring> #include <locale> #include <sstream> |