]> gitweb.factorcode.org Git - factor.git/blob - vm/aging_space.hpp
Merge branch 'fjsc' of git://double.co.nz/git/factor
[factor.git] / vm / aging_space.hpp
1 namespace factor
2 {
3
4 struct aging_space : old_space {
5         aging_space(cell size, cell start) : old_space(size,start) {}
6 };
7
8 }