Skip to content

Instantly share code, notes, and snippets.

@lcapaldo
Created March 7, 2012 11:33
Show Gist options
  • Save lcapaldo/1992638 to your computer and use it in GitHub Desktop.
Save lcapaldo/1992638 to your computer and use it in GitHub Desktop.
struct at_scope_exit : private std::function<void()> {
at_scope_exit(std::function<void()> do_this) : std::function<void()>(do_this)
{}
~at_scope_exit()
{
(*this)();
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment