On Tue, Oct 23, 2001 at 02:39:37PM +0100, Alex Gough wrote:
> Parrot_base_vtables[enum_class_int] = (struct _vtable) {
This construct is a little dodgy, but I couldn't think of
a better way to do it. Alex, could you try manually hacking
it to use a temporary variable, like this:
struct _vtable foo = {
....
};
Parrot_base_vtables[enum_class_int] = foo;
Thanks.
--
So what if I have a fertile brain? Fertilizer happens.
-- Larry Wall in <[EMAIL PROTECTED]>
