Skip to content

Commit 0b0d8a6

Browse files
clippy
1 parent f890e42 commit 0b0d8a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/metadata/libfunc_counter.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,11 +158,11 @@ impl LibfuncCounterMeta {
158158

159159
/// Indexes the array of counters and increments
160160
/// the one relative to the given libfunc index
161-
pub fn store_array_counter<'c, 'a>(
161+
pub fn store_array_counter<'c>(
162162
&mut self,
163163
context: &Context,
164164
module: &Module,
165-
block: &'a Block<'c>,
165+
block: &Block<'c>,
166166
location: Location,
167167
libfunc_amount: u32,
168168
) -> Result<()> {
@@ -222,11 +222,11 @@ impl LibfuncCounterMeta {
222222
Ok(())
223223
}
224224

225-
pub fn count_libfunc<'c, 'a>(
225+
pub fn count_libfunc<'c>(
226226
&mut self,
227227
context: &Context,
228228
module: &Module,
229-
block: &'a Block<'c>,
229+
block: &Block<'c>,
230230
location: Location,
231231
libfunc_idx: usize,
232232
libfuncs_amount: u32,

0 commit comments

Comments
 (0)