| 189 | /// Constructor. |
| 190 | template <typename F> |
| 191 | constexpr explicit deferred_function(deferred_init_tag, F&& function) |
| 192 | : function_(static_cast<F&&>(function)) |
| 193 | { |
| 194 | } |
| 195 | |
| 196 | //private: |
| 197 | Function function_; |
nothing calls this directly
no outgoing calls
no test coverage detected