我正在将 Xcode 4.4 与山狮一起使用。我似乎无法理解为什么模板中的非静态成员初始化会调用变量的移动构造函数。有没有办法克服这个错误?
示例代码:
#include <iostream>
#include <atomic>
//
// This class can compile
//
class Working
{
public:
int GetValue() { return value_; }
private:
std::atomic<int> value_{0};
};
//
// This class cannot compile
//
template <typename Ty1>
class NotWorking
{
public:
int GetValue() { return value_; }
private:
std::atomic<int> value_{0}; // <---- error here
};
int main(int argc, const char * argv[])
{
Working working;
NotWorking<int> not_working;
return 0;
}
Xcode 4.4 和 Clang 在该行中抛出错误说:
"Copying member subobject of type 'std::atomic<int>' invokes deleted constructor"