2013-05-11 22:16:22 -04:00
|
|
|
namespace factor {
|
2009-10-20 23:20:49 -04:00
|
|
|
|
2013-05-11 22:16:22 -04:00
|
|
|
struct nursery_space : bump_allocator<object> {
|
2013-05-12 21:48:38 -04:00
|
|
|
nursery_space(cell size, cell start)
|
2013-05-11 22:16:22 -04:00
|
|
|
: bump_allocator<object>(size, start) {}
|
2009-10-20 23:20:49 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|