| 58 | |
| 59 | template <class ReturnType = void> |
| 60 | std::future<ReturnType> executeInMainThread(JobType<ReturnType> job) |
| 61 | { |
| 62 | return executeInThread(std::move(job), ExecutionPolicy::MainThread); |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Whether multi-threading is enabled |
nothing calls this directly
no outgoing calls
no test coverage detected