10 lines
152 B
C++
10 lines
152 B
C++
|
namespace factor
|
||
|
{
|
||
|
|
||
|
struct nursery_space : bump_allocator<object>
|
||
|
{
|
||
|
nursery_space(cell size, cell start) : bump_allocator<object>(size,start) {}
|
||
|
};
|
||
|
|
||
|
}
|