diff options
author | Vincent Ambo <mail@tazj.in> | 2023-02-27T10·50+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2023-03-13T20·30+0000 |
commit | 43d04d9b985855cb431024d9895d52ea52fd4180 (patch) | |
tree | dbf61bc1bff75a9163050ac2e8e97bb4b582c47b /tvix/eval/src/vm | |
parent | 52b7a762681fb04ae9387c2f1951a36bf83ebc79 (diff) |
refactor(tvix/eval): box PathBuf r/5969
This shaves another 8 bytes off Value. How did that type get so big?! Change-Id: I65e9b59a1636bd57e3cc4aec5fea16887070b832 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8153 Reviewed-by: raitobezarius <tvl@lahfa.xyz> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/vm')
-rw-r--r-- | tvix/eval/src/vm/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/eval/src/vm/mod.rs b/tvix/eval/src/vm/mod.rs index 4d38707ba023..e104c3d2e7f9 100644 --- a/tvix/eval/src/vm/mod.rs +++ b/tvix/eval/src/vm/mod.rs @@ -557,7 +557,7 @@ impl<'o> VM<'o> { OpCode::OpFindFile => match self.stack_pop() { Value::UnresolvedPath(path) => { - let resolved = self.nix_search_path.resolve(path).with_span(&frame)?; + let resolved = self.nix_search_path.resolve(*path).with_span(&frame)?; self.stack.push(resolved.into()); } @@ -573,7 +573,7 @@ impl<'o> VM<'o> { ))); } Some(mut buf) => { - buf.push(path); + buf.push(*path); self.stack.push(buf.into()); } }; |