@brief Constructs Deferred object with a functor F
| 24 | { |
| 25 | /// @brief Constructs Deferred object with a functor F |
| 26 | Deferred(F&& f) : f(forward<F>(f)) {} |
| 27 | |
| 28 | /// @brief Invokes the function F upon destruction, if disarm() has not been previously called. |
| 29 | ~Deferred() |
nothing calls this directly
no outgoing calls
no test coverage detected