[Bug c++/58167] New: compile crush

2013-08-15 Thread leanid.chaika at gmail dot com
at gcc dot gnu.org Reporter: leanid.chaika at gmail dot com I have problem in compiling my simple game. I use c++11 gcc4.7.3 ubuntu 13.04 64bit g++ -o obj/prototype/ground.o -c -fno-strict-aliasing -std=c++0x -Wall -Wfatal-errors -D_WEBSOCKETPP_CPP11_STL_ -D_WEBSOCKETPP_CPP11_FRIEND_ -I

[Bug c++/58167] compile crush

2013-08-15 Thread leanid.chaika at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58167 --- Comment #1 from leanid --- file can't compile: http://ubuntuone.com/1Pwt7bzCgPDFgaR90gchRy

[Bug c++/88165] New: error: default member initializer for 'A::B::m' required before the end of its enclosing class

2018-11-23 Thread leanid.chaika at gmail dot com
NCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: leanid.chaika at gmail dot com Target Milestone: --- The following compiles with MSVC2017 and not with gcc8.2. This bug was reported first on sta

[Bug c++/88165] error: default member initializer for 'A::B::m' required before the end of its enclosing class

2018-11-23 Thread leanid.chaika at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88165 --- Comment #1 from leanid --- minim code: --- struct A { struct B { double m = 0.; }; void f(double d, const B &b = B{}) {} }; int main() { } ---