[Bug c++/66256] noexcept evaluation done before end of class

2019-06-22 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66256 Marek Polacek changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c++/66256] noexcept evaluation done before end of class

2019-06-22 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66256 --- Comment #13 from Marek Polacek --- Author: mpolacek Date: Sat Jun 22 15:51:49 2019 New Revision: 272588 URL: https://gcc.gnu.org/viewcvs?rev=272588=gcc=rev Log: PR c++/66256 * g++.dg/cpp0x/noexcept54.C: New test. Added:

[Bug c++/66256] noexcept evaluation done before end of class

2019-06-08 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66256 Marek Polacek changed: What|Removed |Added Status|NEW |ASSIGNED CC|

[Bug c++/66256] noexcept evaluation done before end of class

2017-09-23 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66256 Jonathan Wakely changed: What|Removed |Added CC||serge.guelton@telecom-breta

[Bug c++/66256] noexcept evaluation done before end of class

2017-08-29 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66256 --- Comment #10 from Jonathan Wakely --- Right, GCC's behaviour for comment 0, comment 7 and comment 8 is a bug. GCC's behaviour for comment 3 and comment 4 is not a bug.

[Bug c++/66256] noexcept evaluation done before end of class

2017-08-24 Thread david at doublewise dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66256 --- Comment #9 from David Stone --- Sorry, I misread the chain of comments, Jonathan Wakely's comment on gcc correctly rejecting invalid code refers specifically to the decltype example. Please ignore my previous comment, except that it captures

[Bug c++/66256] noexcept evaluation done before end of class

2017-08-24 Thread david at doublewise dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66256 David Stone changed: What|Removed |Added CC||david at doublewise dot net --- Comment

[Bug c++/66256] noexcept evaluation done before end of class

2017-04-24 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66256 Jonathan Wakely changed: What|Removed |Added Keywords||accepts-invalid Last

[Bug c++/66256] noexcept evaluation done before end of class

2017-04-24 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66256 Jonathan Wakely changed: What|Removed |Added CC||barry.revzin at gmail dot com ---

[Bug c++/66256] noexcept evaluation done before end of class

2017-03-09 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66256 --- Comment #5 from Jonathan Wakely --- (In reply to Benjamin Buch from comment #3) > Same with decltype instead of noexcept: > > > struct test{ > // it only works if e is declared before test() > using type = decltype(e); > static

[Bug c++/66256] noexcept evaluation done before end of class

2017-03-09 Thread benni.buch at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66256 --- Comment #4 from Benjamin Buch --- Same with decltype instead of noexcept: struct test{ // it only works if e is declared before test() using type = decltype(e); static const bool e = false; }; $ g++ -std=c++11 gcc-bug.cpp

[Bug c++/66256] noexcept evaluation done before end of class

2017-03-09 Thread benni.buch at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66256 Benjamin Buch changed: What|Removed |Added CC||benni.buch at gmail dot com --- Comment

[Bug c++/66256] noexcept evaluation done before end of class

2017-02-14 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66256 --- Comment #2 from Jonathan Wakely --- (In reply to Michael Mehlich from comment #1) > BTW: The header file could be fixed easily by adding std:: in front of these > swap occurrences. No, because that would only consider std::swap and not

[Bug c++/66256] noexcept evaluation done before end of class

2017-02-14 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66256 Jonathan Wakely changed: What|Removed |Added Keywords||rejects-valid

[Bug c++/66256] noexcept evaluation done before end of class

2016-04-23 Thread mmehlich at semanticdesigns dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66256 Michael Mehlich changed: What|Removed |Added CC||mmehlich at semanticdesigns dot co