[Bug c++/64372] [DR1560] Gratuitous lvalue-to-rvalue conversion in conditional-expression with throw-expression operand

2016-03-25 Thread hs at xmission dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64372 hs changed: What|Removed |Added CC||hs at xmission dot com --- Comment #8 from hs

[Bug c++/61087] New: Generated class default ctor (using =default;) not respecting private access?

2014-05-06 Thread hs at xmission dot com
: minor Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: hs at xmission dot com Here's a snippet: class A { private: // A() {} // error, A() private A() = default; // Actually public? }; int main() { A

[Bug c++/61087] Generated class default ctor (using =default;) not respecting private access?

2014-05-06 Thread hs at xmission dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=61087 --- Comment #2 from hs --- (In reply to Jonathan Wakely from comment #1) > dup, fixed in 4.9.0 > > *** This bug has been marked as a duplicate of bug 54812 *** Awesome, thanks!