Skip to content

Instantly share code, notes, and snippets.

@matthiasvegh
Created December 15, 2013 22:52
Show Gist options
  • Select an option

  • Save matthiasvegh/7979487 to your computer and use it in GitHub Desktop.

Select an option

Save matthiasvegh/7979487 to your computer and use it in GitHub Desktop.
Inline this please
void foo_impl3() {
std::cout<<"foo"<<std::endl;
}
void foo_impl2() {
foo_impl3();
}
void foo_impl1() {
foo_impl2();
}
void foo() {
foo_impl1();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment