Fixes typo and removes unused variable.
parent
4f8f4fbe9e
commit
a69516b917
|
@ -51,7 +51,6 @@ void ConvertIdCustomsToGenerics(IdNode *node) {
|
||||||
|
|
||||||
/* FIXME: This function will need to be modified to handle type parameters over structs. */
|
/* FIXME: This function will need to be modified to handle type parameters over structs. */
|
||||||
void ConvertASTCustomsToGenerics(Node *node) {
|
void ConvertASTCustomsToGenerics(Node *node) {
|
||||||
uint32_t i;
|
|
||||||
switch (node->syntaxKind)
|
switch (node->syntaxKind)
|
||||||
{
|
{
|
||||||
case Declaration:
|
case Declaration:
|
||||||
|
@ -78,6 +77,6 @@ void ConvertASTCustomsToGenerics(Node *node) {
|
||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
recurse(node, *ConvertASTCustomsToGenerics);
|
Recurse(node, *ConvertASTCustomsToGenerics);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue