Created
October 6, 2017 10:49
-
-
Save deque-blog/cd0535422f7122d2827a5a7a20924337 to your computer and use it in GitHub Desktop.
This file contains 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
template<typename T> | |
void f(Container<T> const& cont) | |
{ | |
Container<T>::const_iterator it = ...; //Ambiguous (and will not compile) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment