about summary refs log tree commit diff
path: root/tvix/eval/src/lib.rs
diff options
context:
space:
mode:
authorAaqa Ishtyaq <aaqaishtyaq@gmail.com>2023-02-16T08·59+0530
committerclbot <clbot@tvl.fyi>2023-02-16T22·42+0000
commitfaffb2a4cb7482d8c7437809b113066244251084 (patch)
tree8878ae952d6ab5cd94b63aaf6b5de53ea1e748db /tvix/eval/src/lib.rs
parentbfe6cace5ed1565794801ef3d3bfffaffb360330 (diff)
refactor(tvix/eval): remove redundant clone r/5857
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
Diffstat (limited to 'tvix/eval/src/lib.rs')
-rw-r--r--tvix/eval/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/lib.rs b/tvix/eval/src/lib.rs
index 44fe8af2cc..9844097564 100644
--- a/tvix/eval/src/lib.rs
+++ b/tvix/eval/src/lib.rs
@@ -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,
     ) {