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
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58167
--- Comment #1 from leanid ---
file can't compile: http://ubuntuone.com/1Pwt7bzCgPDFgaR90gchRy
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
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()
{
}
---