Skip to content

Instantly share code, notes, and snippets.

@kalman5
Last active January 25, 2020 08:46
Show Gist options
  • Select an option

  • Save kalman5/fad4d27ac7e1e81064dde31caad928dc to your computer and use it in GitHub Desktop.

Select an option

Save kalman5/fad4d27ac7e1e81064dde31caad928dc to your computer and use it in GitHub Desktop.
template <typename F>
void PrePost(F&& f) {
std::cout << "pre\n";
std::forward<F>(f)();
std::cout << "post\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment