diff options
| author | Lukas Markeffsky <@> | 2023-04-28 20:19:48 +0200 | 
|---|---|---|
| committer | Lukas Markeffsky <@> | 2023-04-28 20:19:48 +0200 | 
| commit | fc63926e18794f3940098689528e67d8bf5f7cb0 (patch) | |
| tree | 77674d42d7ca66bc54759148aed14602a882abe7 /compiler/rustc_borrowck/src/member_constraints.rs | |
| parent | 69c71dacda9ce6442ee4600ddde7b528b5b411db (diff) | |
| download | rust-fc63926e18794f3940098689528e67d8bf5f7cb0.tar.gz rust-fc63926e18794f3940098689528e67d8bf5f7cb0.zip | |
remove unused `mut`s
Diffstat (limited to 'compiler/rustc_borrowck/src/member_constraints.rs')
| -rw-r--r-- | compiler/rustc_borrowck/src/member_constraints.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/compiler/rustc_borrowck/src/member_constraints.rs b/compiler/rustc_borrowck/src/member_constraints.rs index db5b8f464c8..842e9008058 100644 --- a/compiler/rustc_borrowck/src/member_constraints.rs +++ b/compiler/rustc_borrowck/src/member_constraints.rs @@ -221,7 +221,7 @@ fn append_list( ) { let mut p = target_list; loop { - let mut r = &mut constraints[p]; + let r = &mut constraints[p]; match r.next_constraint { Some(q) => p = q, None => { | 
