我正在使用 Eclipse CDT 8.1.1
问题是,当使用 C++11 类成员初始化器时,它抱怨成员未初始化。它仍然需要一个初始化列表。
class Foo {
public:
Foo() {} // warning: Member `m_bar` was not initialized in this constructor
private:
int m_bar = 0;
};
对此我能做些什么吗?
我正在使用 Eclipse CDT 8.1.1
问题是,当使用 C++11 类成员初始化器时,它抱怨成员未初始化。它仍然需要一个初始化列表。
class Foo {
public:
Foo() {} // warning: Member `m_bar` was not initialized in this constructor
private:
int m_bar = 0;
};
对此我能做些什么吗?