Clang ++ - 3.7 CRTP编译错误"没有命名成员"在父模板参数中

时间:2016-03-02 22:02:58

标签: c++ templates g++ clang++ crtp

在下面的代码中,我试图使用CRTP来使用静态成员&#34; value&#34;来自Parent类中的Child类。用g ++ 5.2.1编译代码时使用&#34; -pedantic&#34; flag,我能够按预期编译,并在执行时c.print_value();Child<int,4>::print_value();打印出来4.

#include <iostream>

template <typename DE>
struct Parent
{
    static const int value = DE::value;
    static void print_value ()
    {
        std::cout << "Value : " << value << '\n';
    }
};

template <typename T, int N>
struct Child : Parent< Child<T,N> >
{
    static const int value = N;
};

int
main ()
{
    Child<int,4> c;
    c.print_value();
    Child<int,4>::print_value();
}

然而,当使用clang ++ 3.7编译相同的代码时,我遇到了编译失败。

crtp_clang_error.cpp:9:32: error: no member named 'value' in 'Child<int, 4>'
static const int value = DE::value;
                       ~~~~^
crtp_clang_error.cpp:27:16: note: in instantiation of template class 'Parent<Child<int, 4> >' requested here
struct Child : Parent< Child<T,N> >
           ^
crtp_clang_error.cpp:38:16: note: in instantiation of template class 'Child<int, 4>' requested here
  Child<int,4> c;
           ^
crtp_clang_error.cpp:40:3: error: no member named 'print_value' in 'Child<int, 4>'; did you mean 'Parent<Child<int, 4> >::print_value'?
  Child<int,4>::print_value();
  ^~~~~~~~~~~~~~~~~~~~~~~~~
  Parent<Child<int, 4> >::print_value
crtp_clang_error.cpp:11:15: note: 'Parent<Child<int, 4> >::print_value' declared here
  static void print_value ()

我不确定这是一个Clang ++ bug还是GCC hack。非常感谢一些见解。

0 个答案:

没有答案