Fix debug build

db4
Slava Pestov 2009-09-11 20:33:38 -05:00
parent a25ef8b5d9
commit 13464d9403
1 changed files with 1 additions and 2 deletions

View File

@ -20,9 +20,8 @@ struct gc_root : public tagged<T>
~gc_root() {
#ifdef FACTOR_DEBUG
assert(gc_locals.back() == (cell)this);
#else
gc_locals.pop_back();
#endif
gc_locals.pop_back();
}
};