just now I had to dig through the website to find out why template class template member function was giving syntax errors:
template<class C> class F00 {
template<typename T> bar();
};
...
Foo<C> f;
f.bar<T>(); // syntax error here
I now realize that template brackets are treated as relational operators. To do what was intended the following bizarre syntax is needed, cf http://stackoverflow.com/questions/1682844/templates-template-function-not-playing-well-with-classs-template-member-functi:
f.template bar<T>();
what other bizarre aspects and gotcha of C++/C++ templates you have encountered that were not something that you would consider to be common knowledge?
template<typename T> bar();have? – xtofl Dec 10 '09 at 7:58templatehere, asfis not a dependent name. What would it depend on anyway? It's a name in an unspecified scope, for an object of typeFoo<C>. – MSalters Sep 22 '10 at 9:51