diff options
author | fanquake <fanquake@gmail.com> | 2022-04-01 14:49:13 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-04-01 14:49:13 +0100 |
commit | e8fc236da70085d30c90cdade06edfa1da855a6c (patch) | |
tree | 3ca24c7d74e633251dc91a9b2d6e58f5640c322c /src/util/threadnames.cpp | |
parent | 87f3c04cc539c34d32af5fd59abef2c0b5faee26 (diff) |
refactor: add missing std:: includes to threadnames.cpp
Diffstat (limited to 'src/util/threadnames.cpp')
-rw-r--r-- | src/util/threadnames.cpp | 2 |
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> |