I'm using eclipse CDT 8.1.1
The issue is that, when using C++11 class member initializers, it complains that the members are not initialized. It's still expecting an initializer list.
class Foo {
public:
Foo() {} // warning: Member `m_bar` was not initialized in this constructor
private:
int m_bar = 0;
};
Is there anything I can do about this?