Re: gcc 3.4.4: stl's uninitialized bug

2005-12-02 Thread Brian Dessent
Iván Nieto wrote: > Building a Cygwin project of mine with gcc 3.4.* issues some warnings > I haven't been able to eliminate completely. I'm using gcc 3.4.4 with > Cygwin 1.5.18, under Windows 98SE. This looks like PR22207: . From what I can tell, this is unlikely to

gcc 3.4.4: stl's uninitialized bug

2005-12-02 Thread Iván Nieto
Building a Cygwin project of mine with gcc 3.4.* issues some warnings I haven't been able to eliminate completely. I'm using gcc 3.4.4 with Cygwin 1.5.18, under Windows 98SE. I've reduce the problem to this test case: #include class Foo { public: Foo(); Foo(const Foo& f); ~Foo(); };