Created
January 10, 2014 11:57
-
-
Save matthiasvegh/8350755 to your computer and use it in GitHub Desktop.
Also inline this
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(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