File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,6 @@ impl Linker {
135
135
free_immediately,
136
136
unsafe_generics
137
137
) ]
138
-
139
138
pub struct LinkerInstance < ' a > {
140
139
inner : RefCell < MaybeInstanceImpl < ' a > > ,
141
140
refs : RefCell < Vec < Value > > ,
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ pub enum StoreContextValue<'a> {
262
262
Caller ( Opaque < Obj < Caller < ' a > > > ) ,
263
263
}
264
264
265
- impl < ' a > From < Obj < Store > > for StoreContextValue < ' a > {
265
+ impl From < Obj < Store > > for StoreContextValue < ' _ > {
266
266
fn from ( store : Obj < Store > ) -> Self {
267
267
StoreContextValue :: Store ( store. into ( ) )
268
268
}
@@ -274,7 +274,7 @@ impl<'a> From<Obj<Caller<'a>>> for StoreContextValue<'a> {
274
274
}
275
275
}
276
276
277
- impl < ' a > StoreContextValue < ' a > {
277
+ impl StoreContextValue < ' _ > {
278
278
pub fn mark ( & self , marker : & Marker ) {
279
279
match self {
280
280
Self :: Store ( store) => marker. mark ( * store) ,
You can’t perform that action at this time.
0 commit comments