diff options
author | Vincent Ambo <mail@tazj.in> | 2023-01-04T14·21+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2023-01-17T10·38+0000 |
commit | 559a09c5e6dc55717f97c3664f73ec65f736583f (patch) | |
tree | e12c4cbc778ae429bf518ce6646a319d7001b615 /tvix/eval/src/builtins/impure.rs | |
parent | b9646ab40c3b7da488b3f3874fb0ce4ddafe6de4 (diff) |
refactor(tvix/eval): remove `Box` in new_suspended_native r/5675
This is unnecessary, Rc already provides all the boxing we need. Change-Id: I08cf0939c48da43f04c847526c7e5dae5336d528 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7749 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi> Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'tvix/eval/src/builtins/impure.rs')
-rw-r--r-- | tvix/eval/src/builtins/impure.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/eval/src/builtins/impure.rs b/tvix/eval/src/builtins/impure.rs index e8c032cc77e6..0cebd5f6ab58 100644 --- a/tvix/eval/src/builtins/impure.rs +++ b/tvix/eval/src/builtins/impure.rs @@ -72,12 +72,12 @@ pub fn impure_builtins() -> Vec<(&'static str, Value)> { result.push(( "storeDir", - Value::Thunk(Thunk::new_suspended_native(Rc::new(Box::new( + Value::Thunk(Thunk::new_suspended_native(Rc::new( |vm: &mut VM| match vm.io().store_dir() { None => Ok(Value::Null), Some(dir) => Ok(Value::String(dir.into())), }, - )))), + ))), )); // currentTime pins the time at which evaluation was started |