11 lines
188 B
C++
11 lines
188 B
C++
|
#pragma once
|
||
|
|
||
|
#include <exe/executors/tp/fast/thread_pool.hpp>
|
||
|
|
||
|
namespace exe::executors {
|
||
|
|
||
|
// Default thread pool
|
||
|
using ThreadPool = tp::fast::ThreadPool;
|
||
|
|
||
|
} // namespace exe::executors
|