diff options
author | luigi1111 <luigi1111w@gmail.com> | 2023-01-11 12:12:57 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2023-01-11 12:12:57 -0500 |
commit | ac87d8dac95bb7777898479ded1de3e53422a3e9 (patch) | |
tree | 24d6d1c2cc83660b452ffbcf85d9ae82f9a3c359 | |
parent | Merge pull request #8677 (diff) | |
parent | common: add missing includes (diff) | |
download | monero-ac87d8dac95bb7777898479ded1de3e53422a3e9.tar.xz |
Merge pull request #8682
96677ff common: add missing includes (selsta)
-rw-r--r-- | src/common/dns_utils.cpp | 2 | ||||
-rw-r--r-- | src/common/threadpool.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/common/dns_utils.cpp b/src/common/dns_utils.cpp index aceefcf36..466224390 100644 --- a/src/common/dns_utils.cpp +++ b/src/common/dns_utils.cpp @@ -30,6 +30,8 @@ // check local first (in the event of static or in-source compilation of libunbound) #include "unbound.h" +#include <deque> +#include <set> #include <stdlib.h> #include "include_base_utils.h" #include "common/threadpool.h" diff --git a/src/common/threadpool.h b/src/common/threadpool.h index 53421e18b..fcf8ca945 100644 --- a/src/common/threadpool.h +++ b/src/common/threadpool.h @@ -31,6 +31,7 @@ #include <boost/thread/mutex.hpp> #include <boost/thread/thread.hpp> #include <cstddef> +#include <deque> #include <functional> #include <utility> #include <vector> |