From 19fe34415aa4f9f9c82277955a8385f9d65a61f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20B=C3=A9raud?= <adrien.beraud@savoirfairelinux.com> Date: Wed, 15 Sep 2021 16:45:56 -0400 Subject: [PATCH] thread pool: fix build on MSVC --- include/opendht/thread_pool.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/opendht/thread_pool.h b/include/opendht/thread_pool.h index f16af058..f5b294b5 100644 --- a/include/opendht/thread_pool.h +++ b/include/opendht/thread_pool.h @@ -27,6 +27,8 @@ #include <future> #include <functional> +#include <ciso646> // fix windows compiler bug + namespace dht { class OPENDHT_PUBLIC ThreadPool { -- GitLab