Calling templated member of templated object

D

david

template< typename T >
void f( T & t )
{
t.g<int>();
}

MSVC 2005 compiles this without problems (yes, even when it's
instantiated). g++ gives errors. Comeau compiles in "relaxed" mode,
but in "strict" mode gives

"ComeauTest.c", line 4: error: type name is not allowed
t.g<int>();
^

"ComeauTest.c", line 4: error: expected an expression
t.g<int>();
^

Clearly, it's assuming the < is a less-than operator. What is the
"strict" way of doing this?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,051
Latest member
CarleyMcCr

Latest Threads

Top