| 29 | |
| 30 | template <typename Func, typename... Args> |
| 31 | FutureThreadPool<void>::Future SwapCopyThreadPool::launch(Func&& func, Args&&... args) { |
| 32 | return m_pool.launch(std::forward<Func>(func), std::forward<Args>(args)...); |
| 33 | } |
| 34 | |
| 35 | /* ===================== SwapVarRecorder ===================== */ |
| 36 |
no outgoing calls