c++ - member template name and template keyword
- Christof Meerwald (22/22) Dec 14 2002 See 14.2 Names of template specializations [temp.names], paragraph 4, of...
See 14.2 Names of template specializations [temp.names], paragraph 4, of the
C++ standard:
struct A
{
template<int> static void f();
// Error: no identifier for declarator
};
template<class T> void g(T t)
{
T::template f<1>();
// Error: identifier expected
}
int main()
{
g(A());
return 0;
}
bye, Christof
--
http://cmeerw.org JID: cmeerw jabber.at
mailto cmeerw at web.de
...and what have you contributed to the Net?
Dec 14 2002








Christof Meerwald <cmeerw web.de>