From d06f7ff779824ca26b3c1daf0b31837334c9cf25 Mon Sep 17 00:00:00 2001 From: Neil MacIntosh Date: Wed, 30 Sep 2015 12:39:18 -0700 Subject: [PATCH] Renamed Final_act to final_act as per issue #91. --- include/gsl.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/include/gsl.h b/include/gsl.h index 5ae4df6..5d4c840 100644 --- a/include/gsl.h +++ b/include/gsl.h @@ -45,30 +45,30 @@ using owner = T; // GSL.util: utilities // -// Final_act allows you to ensure something gets run at the end of a scope +// final_act allows you to ensure something gets run at the end of a scope template -class Final_act +class final_act { public: - explicit Final_act(F f) : f_(std::move(f)), invoke_(true) {} + explicit final_act(F f) : f_(std::move(f)), invoke_(true) {} - Final_act(Final_act&& other) : f_(std::move(other.f_)), invoke_(true) { other.invoke_ = false; } - Final_act(const Final_act&) = delete; - Final_act& operator=(const Final_act&) = delete; + final_act(final_act&& other) : f_(std::move(other.f_)), invoke_(true) { other.invoke_ = false; } + final_act(const final_act&) = delete; + final_act& operator=(const final_act&) = delete; - ~Final_act() { if (invoke_) f_(); } + ~final_act() { if (invoke_) f_(); } private: F f_; bool invoke_; }; -// finally() - convenience function to generate a Final_act +// finally() - convenience function to generate a final_act template -Final_act finally(const F &f) { return Final_act(f); } +final_act finally(const F &f) { return final_act(f); } template -Final_act finally(F &&f) { return Final_act(std::forward(f)); } +final_act finally(F &&f) { return final_act(std::forward(f)); } // narrow_cast(): a searchable way to do narrowing casts of values template