Fixes typo and removes unused variable.

pull/6/head
venko 2021-05-27 11:53:01 -07:00
parent 4f8f4fbe9e
commit a69516b917
1 changed files with 1 additions and 2 deletions

View File

@ -51,7 +51,6 @@ void ConvertIdCustomsToGenerics(IdNode *node) {
/* FIXME: This function will need to be modified to handle type parameters over structs. */
void ConvertASTCustomsToGenerics(Node *node) {
uint32_t i;
switch (node->syntaxKind)
{
case Declaration:
@ -78,6 +77,6 @@ void ConvertASTCustomsToGenerics(Node *node) {
}
default:
recurse(node, *ConvertASTCustomsToGenerics);
Recurse(node, *ConvertASTCustomsToGenerics);
}
}