https://gcc.gnu.org/bugzilla/show_bug.cgi?id=20040
Jason Merrill changed:
What|Removed |Added
Resolution|--- |FIXED
Status|ASSIGNED
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: Fr
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: Th
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=20040
Jason Merrill changed:
What|Removed |Added
Status|NEW |ASSIGNED
CC|
--- 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 = new
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-02-17
21:28 ---
Confirmed, not a regression.
--
What|Removed |Added
Status|UNCONFIRMED