[Bug c++/77792] Generic lamdba scope issue when working with list::remove_if

2022-02-01 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77792 Andrew Pinski changed: What|Removed |Added Resolution|--- |FIXED Status|NEW

[Bug c++/77792] Generic lamdba scope issue when working with list::remove_if

2022-02-01 Thread marxin at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77792 Martin Liška changed: What|Removed |Added CC||marxin at gcc dot gnu.org

[Bug c++/77792] Generic lamdba scope issue when working with list::remove_if

2021-12-13 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77792 Andrew Pinski changed: What|Removed |Added Known to work||7.1.0, 8.1.0 Keywords|

[Bug c++/77792] Generic lamdba scope issue when working with list::remove_if

2016-09-29 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77792 --- Comment #3 from Jonathan Wakely --- The minimal example from an SO answer: template struct S { template static void f(); S() { void(*g)(char) = [](auto) { f<0>; }; } }; S<0> s;

[Bug c++/77792] Generic lamdba scope issue when working with list::remove_if

2016-09-29 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77792 Jonathan Wakely changed: What|Removed |Added Keywords||rejects-valid

[Bug c++/77792] Generic lamdba scope issue when working with list::remove_if

2016-09-29 Thread michele.caini at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77792 --- Comment #1 from Michele Caini --- See also this question on SO: http://stackoverflow.com/q/39766467/4987285