Subject: | Clone.xs(218) : error C2143: syntax error : missing ';' before 'type' |
this bug in Clone-0.17
Clone.xs(218) : error C2143: syntax error : missing ';' before 'type'
Clone.xs(235) : error C2065: 'magic_ref' : undeclared identifier
NMAKE : fatal error U1077: 'cl' : return code '0x2'
Stop.
microsoft C compiler wants all variables declared at top of function
including magic_ref
sv_clone (SV * ref, int depth)
{
SV *clone = ref;
SV **seen = NULL;
int magic_ref = 0;
thanks