Searched refs:FinallyImpl (Results 1 – 1 of 1) sorted by relevance
45 class FinallyImpl : public Finally {47 MARL_NO_EXPORT inline FinallyImpl(const F& func);48 MARL_NO_EXPORT inline FinallyImpl(F&& func);49 MARL_NO_EXPORT inline FinallyImpl(FinallyImpl<F>&& other);50 MARL_NO_EXPORT inline ~FinallyImpl();53 FinallyImpl(const FinallyImpl<F>& other) = delete;54 FinallyImpl<F>& operator=(const FinallyImpl<F>& other) = delete;55 FinallyImpl<F>& operator=(FinallyImpl<F>&&) = delete;61 FinallyImpl<F>::FinallyImpl(const F& func) : func(func) {} in FinallyImpl() function64 FinallyImpl<F>::FinallyImpl(F&& func) : func(std::move(func)) {} in FinallyImpl() function[all …]