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

@ -303,7 +303,7 @@ fn parse_compile_internal(
let compiler_result = match compiler::compile(
result.expr.as_ref().unwrap(),
location,
file.clone(),
file,
builtins,
compiler_observer,
) {