| 77 | |
| 78 | template <typename T> |
| 79 | static void set_thread_data(const std::string& key, std::shared_ptr<T> state) |
| 80 | { |
| 81 | m_threads_states[key] = std::static_pointer_cast<void>(state); |
| 82 | } |
| 83 | |
| 84 | template <class _Fn, class... _Args> |
| 85 | static void start_thread(std::string key, _Fn function, _Args... args) |
nothing calls this directly
no outgoing calls
no test coverage detected