Skip to content

Instantly share code, notes, and snippets.

@matthiasvegh
Created January 10, 2014 11:57
Show Gist options
  • Save matthiasvegh/8350755 to your computer and use it in GitHub Desktop.
Save matthiasvegh/8350755 to your computer and use it in GitHub Desktop.
Also inline this
void foo(T t) {
foo_impl1(t);
}
void foo_impl1(T u) {
foo_impl2(u);
}
void foo_impl2(T w) {
std::cout<<w<<std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment