Skip to content

Commit 0d21f08

Browse files
committed
Remove unneeded lifetime
1 parent 6d7c16a commit 0d21f08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_utils/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2711,7 +2711,7 @@ impl<'tcx> ExprUseNode<'tcx> {
27112711
}
27122712

27132713
/// Gets the context an expression's value is used in.
2714-
pub fn expr_use_ctxt<'tcx>(cx: &LateContext<'tcx>, e: &'tcx Expr<'tcx>) -> ExprUseCtxt<'tcx> {
2714+
pub fn expr_use_ctxt<'tcx>(cx: &LateContext<'tcx>, e: &Expr<'tcx>) -> ExprUseCtxt<'tcx> {
27152715
let mut adjustments = [].as_slice();
27162716
let mut is_ty_unified = false;
27172717
let mut moved_before_use = false;

0 commit comments

Comments
 (0)