]> gitweb.factorcode.org Git - factor.git/blob - vm/nursery_space.hpp
VM: Refactor nursery_* to Factor style
[factor.git] / vm / nursery_space.hpp
1 namespace factor {
2
3 struct nursery_space : bump_allocator<object> {
4   explicit nursery_space(cell size, cell start)
5       : bump_allocator<object>(size, start) {}
6 };
7
8 }