This repository was archived by the owner on Jul 3, 2023. It is now read-only.
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ impl Node {
196
196
}
197
197
198
198
/// Lookup node in the subtree with the root in `self` by path.
199
- fn node_ref < ' a > ( & self , mut path : slice:: Iter < ' a , NodeId > ) -> Option < & Node > {
199
+ fn node_ref ( & self , mut path : slice:: Iter < NodeId > ) -> Option < & Node > {
200
200
match path. next ( ) {
201
201
None => Some ( self ) ,
202
202
Some ( node_id) => match & self . kind {
@@ -207,7 +207,7 @@ impl Node {
207
207
}
208
208
209
209
/// Lookup node in the subtree with the root in `self` by path.
210
- fn node_mut < ' a > ( & mut self , mut path : slice:: Iter < ' a , NodeId > ) -> Option < & mut Node > {
210
+ fn node_mut ( & mut self , mut path : slice:: Iter < NodeId > ) -> Option < & mut Node > {
211
211
match path. next ( ) {
212
212
None => Some ( self ) ,
213
213
Some ( node_id) => match & mut self . kind {
Original file line number Diff line number Diff line change @@ -434,10 +434,10 @@ where
434
434
/// aggregation logic in the `Aggregator` trait. The second iteration
435
435
/// is only needed inside nested scopes and can in the future be
436
436
/// optimized to terminate early.
437
- fn eval_key < ' s > (
437
+ fn eval_key (
438
438
& mut self ,
439
439
key : & Z :: Key ,
440
- input_cursor : & mut IT :: Cursor < ' s > ,
440
+ input_cursor : & mut IT :: Cursor < ' _ > ,
441
441
output : & mut Vec < ( Z :: Key , Option < A :: Output > ) > ,
442
442
) {
443
443
// println!(
You can’t perform that action at this time.
0 commit comments