[Bug c++/56991] constexpr std::initializer_list rejects too complex initialization

2014-08-29 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56991 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added Status|NEW |RESOLVED

[Bug c++/56991] constexpr std::initializer_list rejects too complex initialization

2014-08-29 Thread paolo at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56991 --- Comment #6 from paolo at gcc dot gnu.org paolo at gcc dot gnu.org --- Author: paolo Date: Fri Aug 29 13:12:02 2014 New Revision: 214729 URL: https://gcc.gnu.org/viewcvs?rev=214729root=gccview=rev Log: 2014-08-29 Paolo Carlini

[Bug c++/56991] constexpr std::initializer_list rejects too complex initialization

2013-05-24 Thread daniel.kruegler at googlemail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56991 --- Comment #4 from Daniel Krügler daniel.kruegler at googlemail dot com --- (In reply to Matheus Izvekov from comment #2) I get also a similar bug: #include initializer_list //is accepted by gcc constexpr std::initializer_listint good1 =

[Bug c++/56991] constexpr std::initializer_list rejects too complex initialization

2013-05-24 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56991 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added Status|UNCONFIRMED |NEW

[Bug c++/56991] constexpr std::initializer_list rejects too complex initialization

2013-04-18 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56991 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added Summary|constexpr

[Bug c++/56991] constexpr std::initializer_list rejects too complex initialization

2013-04-18 Thread mizvekov at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56991 --- Comment #2 from Matheus Izvekov mizvekov at gmail dot com 2013-04-18 08:10:19 UTC --- I get also a similar bug: #include initializer_list //is accepted by gcc constexpr std::initializer_listint good1 = { 1, 2, 3 }; struct foo { int a, b;

[Bug c++/56991] constexpr std::initializer_list rejects too complex initialization

2013-04-18 Thread morwenn29 at hotmail dot fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56991 --- Comment #3 from Morwenn morwenn29 at hotmail dot fr 2013-04-18 08:12:44 UTC --- (In reply to comment #1) I don't see the compiler *crashing*, I see it *rejecting* the snippet. Indeed, sorry for the poor formulation.