[Bug c++/19808] miss a warning about uninitialized member usage in member initializer list in constructor

2018-05-09 Thread roger at rankedgaming dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=19808 --- Comment #42 from Roger Weber --- I posted the latest duplicate of this bug, and I don't know anything about how gcc works. I am very grateful for the hard work you guys put into this, but just looking at the data. This bug was first reported

[Bug c++/85691] New: Faulty Class Member Default Initialization - No Warning or Error

2018-05-07 Thread roger at rankedgaming dot com
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: roger at rankedgaming dot com Target Milestone: --- /// Bug Report struct test { int x = data; int data; test(int o) : data(o) { } }; /// Potentially Related