将代码从gcc移植到clang

时间:2013-03-06 10:52:09

标签: c++ templates parameters c++11 clang

您好我正在尝试使用clang 3.2-9编译我的代码,这是我无法编译的简化示例:

template<template <class>class Derived, typename Type>
class Foo
{
    public:
        Foo(){}
};

template<typename Type>
class Bar
    : public Foo<Bar, Type>
{
    public:
        Bar()
            : Foo<Bar, Type>()
        {}
};

int main()
{
    Bar<int> toto;
}

这是clang告诉我的错误:

test.cpp:14:19: error: template argument for template template parameter must be a class template
            : Foo<Bar, Type>()
                  ^
test.cpp:14:15: error: expected class member or base class name
            : Foo<Bar, Type>()
              ^
test.cpp:14:15: error: expected '{' or ','
3 errors generated.

它在gcc 4.7.2下编译没有任何问题。我无法使用正确的语法使其在clang下工作。 请有人帮助我,我有点卡住......

1 个答案:

答案 0 :(得分:5)

只需使用类模板的完全限定名称:

template<template <class> class Derived, typename Type>
class Foo
{
    public:
        Foo(){}
};

template<typename Type>
class Bar
    : public Foo<::Bar, Type>
//               ^^^^^
{
    public:
        Bar()
            : Foo<::Bar, Type>()
//                ^^^^^
        {}
};

int main()
{
    Bar<int> toto;
}

问题是在Bar内,名称Bar引用了类本身,即Bar类模板的实例化(即{ {1}})而不是模板本身。

您可以看到此示例正在编译here