I\'m trying to learn the STL library and I\'m having a weird problem. This code compiles perfectly:
void Show(vector myvec) { vector
In the first instance the parameter, although it uses a template, is not a template, it is a fully defined class (vector)
vector
In the latter instance the parameter is a template on type T and thus requires typename