mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-10 22:05:06 +00:00
util-threadpool: Add missing includes
This commit is contained in:
parent
30aaea8449
commit
89b99402c0
2 changed files with 3 additions and 0 deletions
|
@ -18,6 +18,7 @@
|
|||
*/
|
||||
|
||||
#include "util-threadpool.hpp"
|
||||
#include <cstddef>
|
||||
|
||||
// Most Tasks likely wait for IO, so we can use that time for other tasks.
|
||||
#define CONCURRENCY_MULTIPLIER 2
|
||||
|
|
|
@ -19,8 +19,10 @@
|
|||
|
||||
#pragma once
|
||||
#include <atomic>
|
||||
#include <condition_variable>
|
||||
#include <functional>
|
||||
#include <list>
|
||||
#include <memory>
|
||||
#include <mutex>
|
||||
#include <thread>
|
||||
|
||||
|
|
Loading…
Reference in a new issue