| 1009 | } |
| 1010 | |
| 1011 | void DeleteTable(DecTable* tbl) { |
| 1012 | ClearList(&(tbl->keyed), (ListItemFn)ClearTableItem); |
| 1013 | ClearList(&(tbl->array), (ListItemFn)ClearTableItem); |
| 1014 | delete tbl; |
| 1015 | } |
| 1016 | |
| 1017 | void CloseTable(Function* F, int r) { |
| 1018 | DecTable* tbl = (DecTable*)RemoveFromList(&(F->tables), FindFromListTail(&(F->tables), (ListItemCmpFn)MatchTable, &r)); |
no test coverage detected