完整(不)工作示例:
struct s { int i; };
template<const s* _arr>
class struct_array
{
public:
static constexpr auto arr = _arr[0]; // works
template<int >
struct inner // line 9, without this struct, it works
{
};
};
constexpr const s s_objs[] = {{ 42 }};
int main()
{
struct_array<s_objs> t_obj;
return 0;
}
编译如下:
g++ -std=c++11 -Wall constexpr.cpp -o constexpr
我用 ideone 的 gcc 4.8.1 得到了一个正在运行的程序,但是 4.7.3 向我打印了这个:
constexpr.cpp: In instantiation of ‘class struct_array<((const s*)(& s_objs))>’:
constexpr.cpp:18:30: required from here
constexpr.cpp:9:16: error: lvalue required as unary ‘&’ operand
constexpr.cpp:9:16: error: could not convert template argument ‘(const s*)(& s_objs)’ to ‘const s*’
最后两行重复 3 次。原因是什么,是否有任何解决方法可以在 gcc 4.7.3 上使用我的代码?