diff options
Diffstat (limited to 'gc.cpp')
-rw-r--r-- | gc.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -38,10 +38,8 @@ mark(CEnv& cenv, const Object* obj) obj->used = true; const ATuple* tup = dynamic_cast<const ATuple*>(obj); if (tup) { - FOREACH(ATuple::const_iterator, i, *tup) { + FOREACH(ATuple::const_iterator, i, *tup) mark(cenv, *i); - mark(cenv, cenv.type(*i)); - } } } |