common: scope_exit: Implement mechanism for canceling a scope exit.

pull/8/head
bunnei 5 years ago
parent 4caff51710
commit 4df6ef04ac

@ -12,10 +12,17 @@ template <typename Func>
struct ScopeExitHelper {
explicit ScopeExitHelper(Func&& func) : func(std::move(func)) {}
~ScopeExitHelper() {
func();
if (active) {
func();
}
}
void Cancel() {
active = false;
}
Func func;
bool active{true};
};
template <typename Func>

Loading…
Cancel
Save