mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-17 16:11:26 -05:00
fix(backend-cpu): fix rust lint error
See https://github.com/zama-ai/concrete/actions/runs/6690310177/job/18175401058#step:9:94
This commit is contained in:
@@ -52,6 +52,8 @@ pub struct Range {
|
||||
pub end: u64,
|
||||
}
|
||||
|
||||
#[allow(unknown_lints)]
|
||||
#[allow(clippy::into_iter_without_iter)]
|
||||
impl IntoIterator for &Range {
|
||||
type Item = u64;
|
||||
|
||||
|
||||
@@ -18,6 +18,8 @@ pub enum Transition {
|
||||
#[derive(Clone, Debug, Default)]
|
||||
pub struct InstructionPartition {
|
||||
// The partition assigned to the instruction
|
||||
#[allow(unknown_lints)]
|
||||
#[allow(clippy::struct_field_names)]
|
||||
pub instruction_partition: PartitionIndex,
|
||||
// How the input are made compatible with the instruction partition
|
||||
pub inputs_transition: Vec<Option<Transition>>,
|
||||
|
||||
Reference in New Issue
Block a user