refactor(tvix/eval): remove redundant clone

This CL removes redundant clone from value which is
going to be dropped without further use.

Change-Id: Ibd2a724853c5cfbf8ca40bf0b3adf0fab89b9be5
Signed-off-by: Aaqa Ishtyaq <aaqaishtyaq@gmail.com>
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8125
Reviewed-by: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
This commit is contained in:
Aaqa Ishtyaq 2023-02-16 14:29:46 +05:30 committed by clbot
parent bfe6cace5e
commit faffb2a4cb
3 changed files with 6 additions and 6 deletions

View file

@ -9,7 +9,7 @@ use ast::Expr;
pub(super) fn optimise_expr(c: &mut Compiler, slot: LocalIdx, expr: ast::Expr) -> ast::Expr {
match expr {
Expr::BinOp(_) => optimise_bin_op(c, slot, expr),
_ => expr.to_owned(),
_ => expr,
}
}