factor/vm/nursery_space.hpp

9 lines
169 B
C++

namespace factor {
struct nursery_space : bump_allocator<object> {
explicit nursery_space(cell size, cell start)
: bump_allocator<object>(size, start) {}
};
}