| 46 | /// auto guard = fl::make_scope_exit([&]{ cleanup(); }); |
| 47 | template <typename EF> |
| 48 | scope_exit<decay_t<EF>> make_scope_exit(EF &&f) { |
| 49 | return scope_exit<decay_t<EF>>(fl::forward<EF>(f)); |
| 50 | } |
| 51 | |
| 52 | } // namespace fl |
no outgoing calls
no test coverage detected