diff options
author | Florian Klink <flokli@flokli.de> | 2023-12-11T22·57+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-12-12T09·01+0000 |
commit | 6c87ab960dcfdaa9727d692dabd4196851ecef95 (patch) | |
tree | 1d3d90843acefeb346cedd02648b71fd9b0261e7 /tvix | |
parent | ccaf10b4a6f7768294e41fcb6fbcd768a1e1c143 (diff) |
chore(tvix/glue): allow unused_variables r/7160
cl/9364 did introduce a warning here, which is visible when building in release mode - or invoking `cargo bench` in tvix-glue. Change-Id: Ia82082a58543f0fdd32866fdfcd37d0a5fdfda9c Reviewed-on: https://cl.tvl.fyi/c/depot/+/10261 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix')
-rw-r--r-- | tvix/glue/src/known_paths.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/glue/src/known_paths.rs b/tvix/glue/src/known_paths.rs index df9f23f3cf6e..a01f8007ebd7 100644 --- a/tvix/glue/src/known_paths.rs +++ b/tvix/glue/src/known_paths.rs @@ -94,6 +94,7 @@ impl KnownPaths { // These variant combinations require no "merging action". (PathKind::Plain, PathKind::Plain) => (), + #[allow(unused_variables)] ( PathKind::Output { name: name1, |