Created
December 15, 2013 22:52
-
-
Save matthiasvegh/7979487 to your computer and use it in GitHub Desktop.
Inline this please
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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