From 89b99402c03d49d58453509b5d623dd0e514cd20 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Wed, 1 Apr 2020 14:32:25 +0200 Subject: [PATCH] util-threadpool: Add missing includes --- source/util-threadpool.cpp | 1 + source/util-threadpool.hpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/source/util-threadpool.cpp b/source/util-threadpool.cpp index 1028e435..afbcbf74 100644 --- a/source/util-threadpool.cpp +++ b/source/util-threadpool.cpp @@ -18,6 +18,7 @@ */ #include "util-threadpool.hpp" +#include // Most Tasks likely wait for IO, so we can use that time for other tasks. #define CONCURRENCY_MULTIPLIER 2 diff --git a/source/util-threadpool.hpp b/source/util-threadpool.hpp index bdb1ec9a..17dfd1fe 100644 --- a/source/util-threadpool.hpp +++ b/source/util-threadpool.hpp @@ -19,8 +19,10 @@ #pragma once #include +#include #include #include +#include #include #include