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