aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-04-01 14:49:13 +0100
committerfanquake <fanquake@gmail.com>2022-04-01 14:49:13 +0100
commite8fc236da70085d30c90cdade06edfa1da855a6c (patch)
tree3ca24c7d74e633251dc91a9b2d6e58f5640c322c /src
parent87f3c04cc539c34d32af5fd59abef2c0b5faee26 (diff)
downloadbitcoin-e8fc236da70085d30c90cdade06edfa1da855a6c.tar.xz
refactor: add missing std:: includes to threadnames.cpp
Diffstat (limited to 'src')
-rw-r--r--src/util/threadnames.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util/threadnames.cpp b/src/util/threadnames.cpp
index 817c2b6d67..a5a86d2598 100644
--- a/src/util/threadnames.cpp
+++ b/src/util/threadnames.cpp
@@ -6,7 +6,9 @@
#include <config/bitcoin-config.h>
#endif
+#include <string>
#include <thread>
+#include <utility>
#if (defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__))
#include <pthread.h>