]> gitweb.factorcode.org Git - factor.git/blob - vm/tenured_space.hpp
vm: remove some dead code
[factor.git] / vm / tenured_space.hpp
1 namespace factor
2 {
3
4 struct tenured_space : old_space {
5         tenured_space(cell size, cell start) : old_space(size,start) {}
6 };
7
8 }