mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 13:51:31 +00:00
Fix clippy::assign_op_pattern
This commit is contained in:
parent
21d7964bc3
commit
6939011b27
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ pub(crate) fn call_info(db: &RootDatabase, position: FilePosition) -> Option<Cal
|
|||
|
||||
// If we are in a method account for `self`
|
||||
if has_self {
|
||||
param = param + 1;
|
||||
param += 1;
|
||||
}
|
||||
|
||||
call_info.active_parameter = Some(param);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue