This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
c++0x N2756 Non-static data member initializers status
- From: Chris <indy271828 at sympatico dot ca>
- To: gcc at gcc dot gnu dot org
- Date: Tue, 21 Oct 2008 23:19:33 -0400
- Subject: c++0x N2756 Non-static data member initializers status
Hi,
I noticed N2756 is not on the gcc c++0x status page (probably because
it's new). Any ideas if and when this would be implemented? It would
be life-changing.
class A {
public:
A() { }
private:
int x = 5;
int y = 0;
};