diff --git a/src/rt/objects/region_object.h b/src/rt/objects/region_object.h index 2ce7fdc..7f49625 100644 --- a/src/rt/objects/region_object.h +++ b/src/rt/objects/region_object.h @@ -8,7 +8,8 @@ namespace rt::objects // The prototype object for region entry point objects inline PrototypeObject* regionPrototypeObject() { - static PrototypeObject* proto = new PrototypeObject("RegionObject", nullptr, objects::immutable_region); + static PrototypeObject* proto = + new PrototypeObject("RegionObject", nullptr, objects::immutable_region); return proto; }