------- Comment #4 from pinskia at gcc dot gnu dot org 2005-11-23 18:48 ------- Reduced (maybe too much as there is an uninitialized variable now): typedef long unsigned int size_t; namespace std { template<typename _Tp > struct vector { vector(){ size_t __n; static_cast<_Tp*>(::operator new(__n * sizeof(_Tp))); } }; }; struct Point { Point (); double values[3]; }; void hyper_L (){ const Point vertices[3] = {}; std::vector<Point > a; }
-- pinskia at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last reconfirmed|0000-00-00 00:00:00 |2005-11-23 18:48:32 date| | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25005