From fe21f53aaf14c862058590a0296f2b3445f31150 Mon Sep 17 00:00:00 2001 From: selsta Date: Sun, 18 Dec 2022 18:30:08 +0100 Subject: [PATCH] common: add missing includes --- src/common/dns_utils.cpp | 2 ++ src/common/threadpool.h | 1 + 2 files changed, 3 insertions(+) diff --git a/src/common/dns_utils.cpp b/src/common/dns_utils.cpp index b8ad90084..76373cd9f 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 +#include #include #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 #include #include +#include #include #include #include