[Bug libstdc++/71329] New: Remove typedefs from iostream

2016-05-28 Thread yanp.bugz at gmail dot com
++ Assignee: unassigned at gcc dot gnu.org Reporter: yanp.bugz at gmail dot com Target Milestone: --- iostream comes with typedefs like uint8_t , int32_t etc. The most confusing is "typedef unsigned int uint;", which is non-stadart. I guess they should be removed from iostream

[Bug c++/77274] New: GCC uses copy constructor in member initializer list instead of simple initialization

2016-08-16 Thread yanp.bugz at gmail dot com
Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: yanp.bugz at gmail dot com Target Milestone: --- Code example: struct C{ static int count; C(int, int) {count++;} }; #define BUG struct C1