Dave Whipp <[EMAIL PROTECTED]> wrote:
> Leopold Toetsch wrote:

>> 1) rename vtable->data to vtable->class
>>
>> All current usage of the 'void *data' vtable element is as the object's
>> class. So it should read "PMC *class".

> Its a minor thing, but I would try to avoid using identifiers that are
> keywords in C++: especially in header files.

Aren't struct members in a distinct namespace? It's like:

  typedef struct _vtable {
    ...
    PMC *class;
    ...
  } VTABLE;

But it could of course read C<class_pmc> or such.

> Dave.

leo

Reply via email to