Searched refs:FinallyImpl (Results 1 – 1 of 1) sorted by relevance
43 class FinallyImpl : public Finally {45 inline FinallyImpl(const F& func);46 inline FinallyImpl(F&& func);47 inline FinallyImpl(FinallyImpl<F>&& other);48 inline ~FinallyImpl();51 FinallyImpl(const FinallyImpl<F>& other) = delete;52 FinallyImpl<F>& operator=(const FinallyImpl<F>& other) = delete;53 FinallyImpl<F>& operator=(FinallyImpl<F>&&) = delete;59 FinallyImpl<F>::FinallyImpl(const F& func) : func(func) {} in FinallyImpl() function62 FinallyImpl<F>::FinallyImpl(F&& func) : func(std::move(func)) {} in FinallyImpl() function[all …]