------- Comment #1 from pinskia at gcc dot gnu dot org  2007-04-06 00:09 -------
I don't think this matters anyways as class == struct and can be used
interchangably for tags.

if you summit a patch, see what this shows you:
struct foobar;

int main()
{
        foobar * o = new foobar;
}

Or even this:

struct foobar;
class foobar;

int main()
{
        foobar * o = new foobar;
}

Since all three are the same code, so it is weird not to have struct == class
here really.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31489

Reply via email to