[Bug libstdc++/77704] Data race on std::ctype

2017-01-31 Thread lz96 at foxmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77704 htfy96 changed: What|Removed |Added CC||lz96 at foxmail dot com --- Comment #2 from

[Bug c++/52869] [DR 1207] this not being allowed in noexcept clauses

2015-06-07 Thread lz96 at foxmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52869 --- Comment #1 from htfy96 lz96 at foxmail dot com --- #include iostream using namespace std; class A { public: void g() noexcept(false) {} void f() noexcept( noexcept( g() )) {}; }; A a; int main() { coutnoexcept(a.f())endl