Why do I get an error trying to call a template member function with an explicit type parameter?
This is due to a really obscure provision of the standard in which if you have a template that tries to access a template function in an object whose type depends on a template argument, you have to use the template keyword in a weird way: this->template f<int>(); This is similar to the weirdness with … Read more