[Bug c++/83921] [7/8 Regression] GCC rejects constexpr initialization of empty aggregate.

2018-01-18 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83921 Jakub Jelinek changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/83921] [7/8 Regression] GCC rejects constexpr initialization of empty aggregate.

2018-01-18 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83921 Richard Biener changed: What|Removed |Added Keywords||rejects-valid Priority|P3

[Bug c++/83921] [7/8 Regression] GCC rejects constexpr initialization of empty aggregate.

2018-01-18 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83921 Paolo Carlini changed: What|Removed |Added Status|NEW |ASSIGNED Assignee|unassigned a

[Bug c++/83921] [7/8 Regression] GCC rejects constexpr initialization of empty aggregate.

2018-01-20 Thread eric at efcs dot ca
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83921 --- Comment #3 from Eric Fiselier --- The problem also reproduces when the empty type has an explicitly defaulted default constructor. Example: struct Foo { Foo() = default; }; constexpr void test() { Foo f; };

[Bug c++/83921] [7/8 Regression] GCC rejects constexpr initialization of empty aggregate.

2018-01-23 Thread paolo at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83921 --- Comment #4 from paolo at gcc dot gnu.org --- Author: paolo Date: Wed Jan 24 00:57:18 2018 New Revision: 257009 URL: https://gcc.gnu.org/viewcvs?rev=257009&root=gcc&view=rev Log: /cp 2018-01-23 Paolo Carlini PR c++/83921 *