3#ifndef TETL_SCOPE_SCOPE_EXIT_HPP
4#define TETL_SCOPE_SCOPE_EXIT_HPP
6#include <etl/_scope/scope_guard.hpp>
19template <
typename FuncT>
20struct scope_exit : detail::scope_guard<FuncT, detail::scope_exit_impl> {
23 using detail::scope_guard<FuncT, detail::scope_exit_impl>::scope_guard;
27template <
typename FuncT>
Definition adjacent_find.hpp:9
scope_exit(FuncT) -> scope_exit< decay_t< FuncT > >
The class template scope_exit is a general-purpose scope guard intended to call its exit function whe...
Definition scope_exit.hpp:20