Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
brockelmore committed Jul 10, 2024
1 parent 0e03166 commit e534e25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/solc-expressions/src/func_call/helper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pub trait CallerHelper: AnalyzerBackend<Expr = Expression, ExprErr = ExprErr> +
let mut new_cvar = self.add_if_err(res)?;
new_cvar.loc = Some(param.loc(self).unwrap());
new_cvar.name.clone_from(&name);
new_cvar.display_name = name.clone();
new_cvar.display_name.clone_from(&name);
new_cvar.is_tmp = false;
new_cvar.storage = if let Some(StorageLocation::Storage(_)) =
param.underlying(self).unwrap().storage
Expand Down

0 comments on commit e534e25

Please sign in to comment.