Skip to content

Commit

Permalink
fix: no need to box interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
MedHeikelBouzayene committed Jan 5, 2025
1 parent 5436d47 commit 484b8c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/blueprint/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ impl Index {
self.map
.iter()
.filter_map(|(_, (def, _))| match def {
Definition::Interface(i) => Some(i.name.to_owned()),
Definition::Interface(interface) => Some(interface.name.to_owned()),
_ => None,
})
.collect()
Expand Down

0 comments on commit 484b8c2

Please sign in to comment.