aboutsummaryrefslogtreecommitdiffstats
path: root/src/gc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gc.cpp')
-rw-r--r--src/gc.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gc.cpp b/src/gc.cpp
index 5752457..4bae933 100644
--- a/src/gc.cpp
+++ b/src/gc.cpp
@@ -85,10 +85,6 @@ GC::collect(const Roots& roots)
(*i)->mark(false);
assert(!(*i)->marked());
} else {
- const Tag tag = (*i)->tag();
- if (tag == T_TUPLE)
- free(((ATuple*)*i)->_vec);
-
tlsf_free((tlsf_t*)_pool, ((char*)(*i) - sizeof(Object::Header)));
_heap.erase(i);
}