Identifiers need to be deleted with delete[]

This patch fixes a mismatch in the delete style.
This commit is contained in:
Cary R 2011-12-18 16:42:36 -08:00
parent ed13de131d
commit aedbda5a75
1 changed files with 3 additions and 3 deletions

View File

@ -971,10 +971,10 @@ for_generate_statement
errormsg(@1, "for-generate name %s does not match closing name %s\n",
name.str(), $11);
}
delete $1;
delete $4;
delete[]$1;
delete[]$4;
delete $8;
delete $11;
delete[]$11;
$$ = tmp;
}
;