[Bug c++/20040] A new expression must check the access level of delete operator

2022-01-27 Thread jason at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=20040 Jason Merrill changed: What|Removed |Added Resolution|--- |FIXED Status|ASSIGNED

[Bug c++/20040] A new expression must check the access level of delete operator

2022-01-21 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=20040 --- Comment #4 from CVS Commits --- The master branch has been updated by Jason Merrill : https://gcc.gnu.org/g:847a8301add0a316767878342c1367948835c181 commit r12-6808-g847a8301add0a316767878342c1367948835c181 Author: Jason Merrill Date:

[Bug c++/20040] A new expression must check the access level of delete operator

2022-01-07 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=20040 --- Comment #3 from CVS Commits --- The master branch has been updated by Jason Merrill : https://gcc.gnu.org/g:6cd51207f5732b5258e883e9030b94c987b6d696 commit r12-6375-g6cd51207f5732b5258e883e9030b94c987b6d696 Author: Jason Merrill Date:

[Bug c++/20040] A new expression must check the access level of delete operator

2022-01-06 Thread jason at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=20040 Jason Merrill changed: What|Removed |Added Status|NEW |ASSIGNED CC|

[Bug c++/20040] A new expression must check the access level of delete operator

2006-09-08 Thread amylaar at gcc dot gnu dot org
--- Comment #2 from amylaar at gcc dot gnu dot org 2006-09-08 20:30 --- g++ also fails to check the accessibility of the destructor: class C { private: void operator delete (void *p) throw (); }; void f () { C *p = new C; } class D { private: ~D (); }; void g () { D *p =

[Bug c++/20040] A new expression must check the access level of delete operator

2005-02-17 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-02-17 21:28 --- Confirmed, not a regression. -- What|Removed |Added Status|UNCONFIRMED