| 1026 | |
| 1027 | private: |
| 1028 | struct HolderBase { |
| 1029 | virtual void operator()() const = 0; |
| 1030 | virtual ~HolderBase(){}; |
| 1031 | }; |
| 1032 | template <typename T> |
| 1033 | struct FuncHolder: HolderBase { |
| 1034 | FuncHolder(T func): func_(std::move(func)) {} |
nothing calls this directly
no outgoing calls
no test coverage detected