Leopold Toetsch wrote:
> Ron Blaschke <[EMAIL PROTECTED]> wrote:
>> Parrot currently doesn't compile on Windows, b/c of the following in
>> F<classes/>.
>> const MMD_init _temp_mmd_init[] = {
>> };
> Thanks, fixed.
Great, thanks!
>> There's gotta be at least one element in the array. Not sure why this
>> compiles on other platforms, though.
> gcc hasn't problems with it. Dunno what the standard says.
MS VC++ has an error code "C2466 - cannot allocate an array of
constant size 0," an indication the standard says that Thou Shalt
Not Do It.
Ron