Commit 3c15e3e5 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Merge pull request #91 from undingen/none_gc

GC: Register None
parents 7cb5ed42 eb04bcde
......@@ -476,6 +476,7 @@ void setupRuntime() {
none_cls = new BoxedClass(object_cls, 0, sizeof(Box), false);
None = new Box(&none_flavor, none_cls);
gc::registerStaticRootObj(None);
str_cls = new BoxedClass(object_cls, 0, sizeof(BoxedString), false);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment