Skip to content

Instantly share code, notes, and snippets.

@superfunc
Created March 31, 2014 07:01
Show Gist options
  • Save superfunc/9886783 to your computer and use it in GitHub Desktop.
Save superfunc/9886783 to your computer and use it in GitHub Desktop.
autoex4
template <typename T>
auto makeSomething(T& t) -> decltype(t.makeSomething()) {
auto thing = t.makeSomething();
// edit thing's properties
return thing;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment