[Bug libstdc++/48365] New: Non-constant references in std::valarray::operator

2011-03-30 Thread denin at mail dot ru
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48365 Summary: Non-constant references in std::valarray::operator Product: gcc Version: 4.4.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++

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

2018-07-29 Thread denin at mail dot ru
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52869 denin at mail dot ru changed: What|Removed |Added CC||denin at mail dot ru --- Comment

[Bug libstdc++/86963] New: std::tuple incorrectly assigned

2018-08-15 Thread denin at mail dot ru
++ Assignee: unassigned at gcc dot gnu.org Reporter: denin at mail dot ru Target Milestone: --- $ cat meow.cpp #include #include struct S { S =(S const &) = delete; S =(S &&) = delete; }; static_assert(!std::is_move_assignable_v>); $ g++ meow.cpp

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

2018-12-12 Thread denin at mail dot ru
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52869 --- Comment #15 from denin at mail dot ru --- (In reply to Marek Polacek from comment #14) > This is actually another problem, one that is tracked in PR86476. So context closure is unduly greedy: members defined above are available while th

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

2018-12-12 Thread denin at mail dot ru
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52869 --- Comment #16 from denin at mail dot ru --- (In reply to Marek Polacek from comment #14) > This is actually another problem, one that is tracked in PR86476. Hmm. $ cat wat.cpp struct Omg { void f() {} void g() noexc