vm: simplify logic

Slava Pestov 2009-10-06 06:36:43 -05:00
parent 4d0ec09d9c
commit 6f1217dab6
1 changed files with 1 additions and 4 deletions

View File

@ -471,9 +471,6 @@ struct nursery_collector : copying_collector<nursery_collector>
bool should_copy_p(object *untagged)
{
if(newspace->contains_p(untagged))
return false;
else
return myvm->nursery.contains_p(untagged);
}