File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -288,7 +288,7 @@ impl Global {
288288
289289 for _ in 0 ..steps {
290290 match self . queue . try_pop_if (
291- & |sealed_bag : & SealedBag | sealed_bag. is_expired ( global_epoch) ,
291+ |sealed_bag : & SealedBag | sealed_bag. is_expired ( global_epoch) ,
292292 guard,
293293 ) {
294294 None => break ,
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ impl Tree {
198198 let mut subscriber_reservation = if is_transactional {
199199 None
200200 } else {
201- Some ( self . subscribers . reserve ( & key) )
201+ Some ( self . subscribers . reserve ( key) )
202202 } ;
203203
204204 let ( encoded_key, last_value) = node_view. node_kv_pair ( key. as_ref ( ) ) ;
@@ -1184,7 +1184,7 @@ impl Tree {
11841184 return Ok ( Ok ( new_opt) ) ;
11851185 }
11861186
1187- let mut subscriber_reservation = self . subscribers . reserve ( & key) ;
1187+ let mut subscriber_reservation = self . subscribers . reserve ( key) ;
11881188
11891189 let frag = if let Some ( ref new) = new_opt {
11901190 Link :: Set ( encoded_key, new. clone ( ) )
You can’t perform that action at this time.
0 commit comments