[Bug c++/82643] lambda capture breaks constexpr-ness of non-static const constexpr member call on non-constexpr value/variable

2020-02-25 Thread cvs-commit at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82643 --- Comment #7 from CVS Commits --- The releases/gcc-8 branch has been updated by Jason Merrill : https://gcc.gnu.org/g:6470e8caa2bd331fb6e21524d6c14662531cfa9b commit r8-10072-g6470e8caa2bd331fb6e21524d6c14662531cfa9b Author: Jason Merrill

[Bug c++/82643] lambda capture breaks constexpr-ness of non-static const constexpr member call on non-constexpr value/variable

2019-03-26 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82643 Jason Merrill changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c++/82643] lambda capture breaks constexpr-ness of non-static const constexpr member call on non-constexpr value/variable

2019-03-26 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82643 --- Comment #5 from Jason Merrill --- Author: jason Date: Tue Mar 26 16:02:19 2019 New Revision: 269951 URL: https://gcc.gnu.org/viewcvs?rev=269951=gcc=rev Log: PR c++/86429 - constexpr variable in lambda. When we refer to a captured

[Bug c++/82643] lambda capture breaks constexpr-ness of non-static const constexpr member call on non-constexpr value/variable

2019-03-25 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82643 Jason Merrill changed: What|Removed |Added Status|NEW |ASSIGNED CC|

[Bug c++/82643] lambda capture breaks constexpr-ness of non-static const constexpr member call on non-constexpr value/variable

2018-07-06 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82643 Jonathan Wakely changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/82643] lambda capture breaks constexpr-ness of non-static const constexpr member call on non-constexpr value/variable

2017-10-20 Thread bastien.penavayre at epitech dot eu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82643 --- Comment #3 from bastien penavayre --- Created attachment 42427 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=42427=edit source code

[Bug c++/82643] lambda capture breaks constexpr-ness of non-static const constexpr member call on non-constexpr value/variable

2017-10-20 Thread bastien.penavayre at epitech dot eu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82643 --- Comment #2 from bastien penavayre --- wrong file attached, see second comment.

[Bug c++/82643] lambda capture breaks constexpr-ness of non-static const constexpr member call on non-constexpr value/variable

2017-10-20 Thread bastien.penavayre at epitech dot eu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82643 --- Comment #1 from bastien penavayre --- Comment on attachment 42426 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=42426 source code int main() { struct A { constexpr int operator()() const { return 42; } };