@@ -19,7 +19,7 @@ impl Default for Algorithm {
19
19
20
20
impl Algorithm {
21
21
/// Add `id` to our priority queue and *add* `flags` to it.
22
- fn add_to_queue ( & mut self , id : ObjectId , mark : Flags , graph : & mut crate :: Graph < ' _ > ) -> Result < ( ) , Error > {
22
+ fn add_to_queue ( & mut self , id : ObjectId , mark : Flags , graph : & mut crate :: Graph < ' _ , ' _ > ) -> Result < ( ) , Error > {
23
23
let commit = graph. try_lookup_or_insert_commit ( id, |entry| {
24
24
entry. flags |= mark | Flags :: SEEN ;
25
25
} ) ?;
@@ -32,7 +32,7 @@ impl Algorithm {
32
32
Ok ( ( ) )
33
33
}
34
34
35
- fn mark_common ( & mut self , id : ObjectId , graph : & mut crate :: Graph < ' _ > ) -> Result < ( ) , Error > {
35
+ fn mark_common ( & mut self , id : ObjectId , graph : & mut crate :: Graph < ' _ , ' _ > ) -> Result < ( ) , Error > {
36
36
let mut is_common = false ;
37
37
if let Some ( commit) = graph
38
38
. try_lookup_or_insert_commit ( id, |entry| {
@@ -76,7 +76,7 @@ impl Algorithm {
76
76
& mut self ,
77
77
entry : Metadata ,
78
78
parent_id : ObjectId ,
79
- graph : & mut crate :: Graph < ' _ > ,
79
+ graph : & mut crate :: Graph < ' _ , ' _ > ,
80
80
) -> Result < bool , Error > {
81
81
let mut was_seen = false ;
82
82
if let Some ( parent) = graph
@@ -113,7 +113,7 @@ impl Algorithm {
113
113
}
114
114
115
115
impl Negotiator for Algorithm {
116
- fn known_common ( & mut self , id : ObjectId , graph : & mut crate :: Graph < ' _ > ) -> Result < ( ) , Error > {
116
+ fn known_common ( & mut self , id : ObjectId , graph : & mut crate :: Graph < ' _ , ' _ > ) -> Result < ( ) , Error > {
117
117
if graph
118
118
. get ( & id)
119
119
. map_or ( false , |commit| commit. data . flags . contains ( Flags :: SEEN ) )
@@ -123,7 +123,7 @@ impl Negotiator for Algorithm {
123
123
self . add_to_queue ( id, Flags :: ADVERTISED , graph)
124
124
}
125
125
126
- fn add_tip ( & mut self , id : ObjectId , graph : & mut crate :: Graph < ' _ > ) -> Result < ( ) , Error > {
126
+ fn add_tip ( & mut self , id : ObjectId , graph : & mut crate :: Graph < ' _ , ' _ > ) -> Result < ( ) , Error > {
127
127
if graph
128
128
. get ( & id)
129
129
. map_or ( false , |commit| commit. data . flags . contains ( Flags :: SEEN ) )
@@ -133,7 +133,7 @@ impl Negotiator for Algorithm {
133
133
self . add_to_queue ( id, Flags :: default ( ) , graph)
134
134
}
135
135
136
- fn next_have ( & mut self , graph : & mut crate :: Graph < ' _ > ) -> Option < Result < ObjectId , Error > > {
136
+ fn next_have ( & mut self , graph : & mut crate :: Graph < ' _ , ' _ > ) -> Option < Result < ObjectId , Error > > {
137
137
loop {
138
138
let id = self . revs . pop_value ( ) . filter ( |_| self . non_common_revs != 0 ) ?;
139
139
let commit = graph. get_mut ( & id) . expect ( "it was added to the graph by now" ) ;
@@ -166,7 +166,7 @@ impl Negotiator for Algorithm {
166
166
}
167
167
}
168
168
169
- fn in_common_with_remote ( & mut self , id : ObjectId , graph : & mut crate :: Graph < ' _ > ) -> Result < bool , Error > {
169
+ fn in_common_with_remote ( & mut self , id : ObjectId , graph : & mut crate :: Graph < ' _ , ' _ > ) -> Result < bool , Error > {
170
170
let mut was_seen = false ;
171
171
let known_to_be_common = graph. get ( & id) . map_or ( false , |commit| {
172
172
was_seen = commit. data . flags . contains ( Flags :: SEEN ) ;
0 commit comments