| 95 | |
| 96 | template <typename FunctionType> |
| 97 | ThreadSafeFunctor<FunctionType>::ThreadSafeFunctor() : callback (std::make_shared<CallbackHolder>()) |
| 98 | { |
| 99 | } |
| 100 | |
| 101 | template <typename FunctionType> |
| 102 | ThreadSafeFunctor<FunctionType>::ThreadSafeFunctor (FunctionType&& f) : ThreadSafeFunctor() |
nothing calls this directly
no outgoing calls
no test coverage detected