9 lines
126 B
C++
9 lines
126 B
C++
|
namespace factor
|
||
|
{
|
||
|
|
||
|
struct tenured_space : old_space {
|
||
|
tenured_space(cell size, cell start) : old_space(size,start) {}
|
||
|
};
|
||
|
|
||
|
}
|