Skip to content

Commit

Permalink
chore: Avoid use * (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoichi-nexus authored and sjudson committed Feb 5, 2025
1 parent 02f55c0 commit 9e8961a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions prover/src/machine2/chips/range256.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@ use crate::machine2::{
traits::MachineChip,
};

use crate::machine2::column::Column::{self, *};
use crate::machine2::column::PreprocessedColumn::{self, *};
use crate::machine2::column::Column::{
self, Helper1, InstructionWord, Multiplicity256, Pc, PrevCtr, Reg1TsPrev, Reg2TsPrev,
Reg3TsPrev, ValueA, ValueB, ValueC,
};
use crate::machine2::column::PreprocessedColumn::{self, IsFirst, Range256};

/// A Chip for range-checking values for 0..=255
///
Expand Down

0 comments on commit 9e8961a

Please sign in to comment.