5

我正在将 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"
4

1 回答 1

3

这看起来像是开源 svn trunk 存储库中的一个 clang 错误。您能否在此处提交针对 clang 的错误报告 http : //llvm.org/bugs/

谢谢!

于 2012-07-26T20:29:12.267 回答