#pragma once #include namespace ext { template class scope_guard { const F function; public: constexpr scope_guard(const F & function_) : function{function_} {} constexpr scope_guard(F && function_) : function{std::move(function_)} {} ~scope_guard() { function(); } }; template inline scope_guard make_scope_guard(F && function_) { return std::forward(function_); } } #define SCOPE_EXIT_CONCAT(n, ...) \ const auto scope_exit##n = ext::make_scope_guard([&] { __VA_ARGS__; }) #define SCOPE_EXIT_FWD(n, ...) SCOPE_EXIT_CONCAT(n, __VA_ARGS__) #define SCOPE_EXIT(...) SCOPE_EXIT_FWD(__LINE__, __VA_ARGS__)