diff options
Diffstat (limited to 'rust/src/low_level_il/expression.rs')
| -rw-r--r-- | rust/src/low_level_il/expression.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rust/src/low_level_il/expression.rs b/rust/src/low_level_il/expression.rs index 331ab980..6addb7e1 100644 --- a/rust/src/low_level_il/expression.rs +++ b/rust/src/low_level_il/expression.rs @@ -91,7 +91,7 @@ where } } -impl<'func, M, F, R> fmt::Debug for LowLevelILExpression<'func, M, F, R> +impl<M, F, R> Debug for LowLevelILExpression<'_, M, F, R> where M: FunctionMutability, F: FunctionForm, @@ -202,7 +202,7 @@ where } } -impl<'func, F> LowLevelILExpression<'func, Finalized, F, ValueExpr> +impl<F> LowLevelILExpression<'_, Finalized, F, ValueExpr> where F: FunctionForm, { @@ -650,7 +650,7 @@ where } } -impl<'func> LowLevelILExpressionKind<'func, Mutable, NonSSA<LiftedNonSSA>> { +impl LowLevelILExpressionKind<'_, Mutable, NonSSA<LiftedNonSSA>> { pub fn flag_write(&self) -> Option<CoreFlagWrite> { use self::LowLevelILExpressionKind::*; |
