diff options
| author | Paul Buetow <paul@buetow.org> | 2008-10-14 20:38:27 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-10-14 20:38:27 +0000 |
| commit | d527f50159f056dc165fa7eaf7bf80425a1e758d (patch) | |
| tree | 03e8aa97c25fbc014876e5113dd66d4a44adac4d /src/core/symbol.c | |
| parent | 71185ab0ab0b08b4d5bb2e750ff85e11f105a453 (diff) | |
GC removed, temporaly
Diffstat (limited to 'src/core/symbol.c')
| -rw-r--r-- | src/core/symbol.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/core/symbol.c b/src/core/symbol.c index 9a98e63..7c8a8f7 100644 --- a/src/core/symbol.c +++ b/src/core/symbol.c @@ -57,15 +57,15 @@ symbol_delete(Symbol *p_symbol) { list_delete(p_list_token); } break; - case SYM_VARIABLE: + case SYM_VARIABLE: { - Token *p_token = symbol_get_val(p_symbol); - switch (token_get_tt(p_token)) { - case TT_ARRAY: - array_iterate(p_token->p_array, token_delete_cb); - break; - NO_DEFAULT; - } + Token *p_token = symbol_get_val(p_symbol); + switch (token_get_tt(p_token)) { + case TT_ARRAY: + //array_iterate(p_token->p_array, token_delete_cb); + break; + NO_DEFAULT; + } } break; NO_DEFAULT; |
