如何在C ++模板代码中修复'预期的'primary-expression'错误?

时间:2010-01-20 23:36:46

标签: c++ templates gcc

这是另一个VC9与GCC 4.2编译错误问题。以下代码使用VC9(Microsoft Visual C ++ 2008 SP1)编译,但不适用于Mac上的GCC 4.2:

struct C
{
    template< typename T >
    static bool big() { return sizeof( T ) > 8; }
};

template< typename X >
struct UseBig
{
    static bool test()
    {
        return X::big< char >(); // ERROR: expected primary-expression
    }                            // before 'char'
};

int main()
{
    C::big< char >();
    UseBig< C >::test();
    return 0;
}

我有什么想法可以解决这个问题吗?

1 个答案:

答案 0 :(得分:37)

那应该是

return X::template big< char >();

模板中的从属名称被带到而不是类型,除非您指定它们是typename并假设不是模板,除非通过template指定。