| 208 | /// Constructor. |
| 209 | template <typename F> |
| 210 | ASIO_CONSTEXPR explicit deferred_function( |
| 211 | deferred_init_tag, ASIO_MOVE_ARG(F) function) |
| 212 | : function_(ASIO_MOVE_CAST(F)(function)) |
| 213 | { |
| 214 | } |
| 215 | |
| 216 | //private: |
| 217 | Function function_; |
no outgoing calls
no test coverage detected