[Bug c++/67026] GCC incorrectly rejects well-formed constexpr function definition

2019-09-28 Thread postmas...@trippelsdorf-de.bounceio.net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67026 --- Comment #9 from postmas...@trippelsdorf-de.bounceio.net --- Created attachment 46976 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=46976&action=edit attachment-52942-1.eml

[Bug c++/67026] GCC incorrectly rejects well-formed constexpr function definition

2019-09-28 Thread postmas...@trippelsdorf-de.bounceio.net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67026 --- Comment #8 from postmas...@trippelsdorf-de.bounceio.net --- Your email was bounced... - ... because something went wrong between you and your recipient. Ugh! What to do next? Well,

[Bug c++/67026] GCC incorrectly rejects well-formed constexpr function definition

2019-02-22 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67026 --- Comment #7 from Jonathan Wakely --- Author: redi Date: Sat Feb 23 03:01:59 2019 New Revision: 269148 URL: https://gcc.gnu.org/viewcvs?rev=269148&root=gcc&view=rev Log: PR libstdc++/89446 fix null pointer dereference in char_traits P

[Bug c++/67026] GCC incorrectly rejects well-formed constexpr function definition

2018-11-14 Thread ville.voutilainen at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67026 Ville Voutilainen changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Bug c++/67026] GCC incorrectly rejects well-formed constexpr function definition

2016-04-26 Thread msebor at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67026 Martin Sebor changed: What|Removed |Added Last reconfirmed|2015-08-29 00:00:00 |2016-4-26 CC|

[Bug c++/67026] GCC incorrectly rejects well-formed constexpr function definition

2015-08-29 Thread trippels at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67026 Markus Trippelsdorf changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/67026] GCC incorrectly rejects well-formed constexpr function definition

2015-07-28 Thread anders.granlund.0 at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67026 --- Comment #3 from Anders Granlund --- (In reply to Andrew Pinski from comment #2) > Actually wait. I think this is invalid and clang is incorrect in not > rejecting it. Because you have a call to a non constexpr in a constexpr > function; doe

[Bug c++/67026] GCC incorrectly rejects well-formed constexpr function definition

2015-07-27 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67026 --- Comment #2 from Andrew Pinski --- Actually wait. I think this is invalid and clang is incorrect in not rejecting it. Because you have a call to a non constexpr in a constexpr function; does not matter if it is after a return or not.

[Bug c++/67026] GCC incorrectly rejects well-formed constexpr function definition

2015-07-27 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67026 --- Comment #1 from Andrew Pinski --- GCC does not implement the full C++14 rules for constexpr yet. That is having a return type of void is not implemented yet. It was invalid for C++11 to have a constexpr with void.