Skip to content

Commit 9caa91e

Browse files
committed
odin - remove commented code
1 parent 1ef3202 commit 9caa91e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

ODIN_II/SRC/ast_util.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -345,10 +345,6 @@ void remove_child_from_node_at_index(ast_node_t* node, int index)
345345
{
346346
node->children[index] = free_whole_tree(node->children[index]);
347347
node->children[index] = NULL;
348-
349-
// ast_node_t *child = node->children[index];
350-
// child = free_whole_tree(child);
351-
// child = NULL;
352348
}
353349

354350
for (int i = index; i < (node->num_children - 1); i++)

0 commit comments

Comments
 (0)