Skip to content

Commit 95b791a

Browse files
Patch clippy for compatibility with change
1 parent 47704bb commit 95b791a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/clippy/clippy_lints/src/unused_io_amount.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ impl<'tcx> LateLintPass<'tcx> for UnusedIoAmount {
7878

7979
/// If `expr` is an (e).await, return the inner expression "e" that's being
8080
/// waited on. Otherwise return None.
81-
fn try_remove_await<'a>(expr: &'a hir::Expr<'a>) -> Option<&hir::Expr<'a>> {
81+
fn try_remove_await<'a>(expr: &'a hir::Expr<'a>) -> Option<&'a hir::Expr<'a>> {
8282
if let hir::ExprKind::Match(expr, _, hir::MatchSource::AwaitDesugar) = expr.kind {
8383
if let hir::ExprKind::Call(func, [ref arg_0, ..]) = expr.kind {
8484
if matches!(

0 commit comments

Comments
 (0)