diff options
author | HampusM <hampus@hampusmat.com> | 2025-08-22 17:31:40 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-08-22 17:31:40 +0200 |
commit | e766f6581c2ca8a8963baed11ad29d6e67a0a8a0 (patch) | |
tree | 1239890300745a87ddbfcd1aefd8c8127be73523 /ecs/src/component/storage/graph.rs | |
parent | ab8750c9d29b59f02f2e807de3307a48225d6087 (diff) |
refactor(ecs): fix mismatched_lifetime_syntaxes warnings
Diffstat (limited to 'ecs/src/component/storage/graph.rs')
-rw-r--r-- | ecs/src/component/storage/graph.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ecs/src/component/storage/graph.rs b/ecs/src/component/storage/graph.rs index 29fa937..76200f9 100644 --- a/ecs/src/component/storage/graph.rs +++ b/ecs/src/component/storage/graph.rs @@ -80,7 +80,7 @@ impl Graph pub fn dfs_archetype_add_edges( &self, archetype_id: ArchetypeId, - ) -> Option<ArchetypeAddEdgeDfsIter> + ) -> Option<ArchetypeAddEdgeDfsIter<'_>> { let node = self.get_node_by_id(archetype_id)?; |