refactor(spatial): remove explicit lifetime specifier

This commit is contained in:
Nova
2022-06-11 14:39:26 -04:00
parent 26f66fc5a4
commit 7fbf92daf0
2 changed files with 5 additions and 9 deletions

View File

@@ -15,7 +15,7 @@ pub struct Node<'a> {
local_methods: HashMap<String, Method>,
destroyable: bool,
pub spatial: Option<Rc<Spatial<'a>>>,
pub spatial: Option<Rc<Spatial>>,
}
impl<'a> Node<'a> {