about summary refs log tree commit diff
path: root/tvix/glue
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2023-12-11T22·57+0200
committerclbot <clbot@tvl.fyi>2023-12-12T09·01+0000
commit6c87ab960dcfdaa9727d692dabd4196851ecef95 (patch)
tree1d3d90843acefeb346cedd02648b71fd9b0261e7 /tvix/glue
parentccaf10b4a6f7768294e41fcb6fbcd768a1e1c143 (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/glue')
-rw-r--r--tvix/glue/src/known_paths.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/glue/src/known_paths.rs b/tvix/glue/src/known_paths.rs
index df9f23f3cf..a01f8007eb 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,