Skip to content

Instantly share code, notes, and snippets.

@zao
Created August 29, 2011 03:59
Show Gist options
  • Save zao/1177751 to your computer and use it in GitHub Desktop.
Save zao/1177751 to your computer and use it in GitHub Desktop.
struct delayed_call
{
boost::optional<std::function<void ()>> f;
~delayed_call()
{
if (f)
(*f)();
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment