| 144 | |
| 145 | template <typename FunctionType> |
| 146 | void ThreadSafeFunctor<FunctionType>::reset() |
| 147 | { |
| 148 | std::scoped_lock l (callback->lock); |
| 149 | callback->fn = {}; |
| 150 | } |
| 151 | |
| 152 | } // namespace choc::threading |
| 153 |
nothing calls this directly
no outgoing calls
no test coverage detected