diff options
author | Vincent Ambo <mail@tazj.in> | 2022-08-25T15·39+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-09-03T00·47+0000 |
commit | edee8eecdf706803d3182a4a427c33ba33c71db1 (patch) | |
tree | a87d66253160c1b53d086c6ab5779d3d5a7794dd /tvix/eval/src/opcode.rs | |
parent | 39b01c302937fe3e91c15758b520c3ecc5379c7b (diff) |
fix(tvix/eval): address all current clippy lints r/4608
Change-Id: I758fc4f3b9078de7ca6228a75a4351c3e085c4cf Reviewed-on: https://cl.tvl.fyi/c/depot/+/6272 Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/opcode.rs')
-rw-r--r-- | tvix/eval/src/opcode.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/eval/src/opcode.rs b/tvix/eval/src/opcode.rs index 39a32d3bad2b..2ad4aa1f9815 100644 --- a/tvix/eval/src/opcode.rs +++ b/tvix/eval/src/opcode.rs @@ -7,6 +7,7 @@ pub struct ConstantIdx(pub usize); #[derive(Clone, Copy, Debug)] pub struct CodeIdx(pub usize); +#[allow(clippy::enum_variant_names)] #[warn(variant_size_differences)] #[derive(Clone, Copy, Debug)] pub enum OpCode { |