Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/profile/src/tree.rs')
| -rw-r--r-- | crates/profile/src/tree.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/profile/src/tree.rs b/crates/profile/src/tree.rs index 62f0c30b52..1290fba36f 100644 --- a/crates/profile/src/tree.rs +++ b/crates/profile/src/tree.rs @@ -72,7 +72,7 @@ struct NodeIter<'a, T> { next: Option<Idx<T>>, } -impl<'a, T> Iterator for NodeIter<'a, T> { +impl<T> Iterator for NodeIter<'_, T> { type Item = Idx<T>; fn next(&mut self) -> Option<Idx<T>> { |