refactor(tvix/eval): remove Box in new_suspended_native

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>
This commit is contained in:
Vincent Ambo 2023-01-04 17:21:09 +03:00 committed by tazjin
parent b9646ab40c
commit 559a09c5e6
3 changed files with 5 additions and 7 deletions

View file

@ -86,9 +86,7 @@ impl Thunk {
})))
}
pub fn new_suspended_native(
native: Rc<Box<dyn Fn(&mut VM) -> Result<Value, ErrorKind>>>,
) -> Self {
pub fn new_suspended_native(native: Rc<dyn Fn(&mut VM) -> Result<Value, ErrorKind>>) -> Self {
let span = codemap::CodeMap::new()
.add_file("<internal>".to_owned(), "<internal>".to_owned())
.span;