| 425 | std::function<void()> f_; |
| 426 | explicit scope_exit(std::function<void()> f) noexcept : f_(std::move(f)) {} |
| 427 | ~scope_exit() { |
| 428 | if (f_) { |
| 429 | f_(); |
| 430 | } |
| 431 | } |
| 432 | }; |
| 433 | |
| 434 | TEST_CASE("Reload module from file") { |
nothing calls this directly
no outgoing calls
no test coverage detected