diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 949642f..8387f58 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -486,7 +486,7 @@ impl QrCode { 5 => x * y % 2 + x * y % 3 == 0, 6 => (x * y % 2 + x * y % 3) % 2 == 0, 7 => ((x + y) % 2 + x * y % 3) % 2 == 0, - _ => panic!("Assertion error"), + _ => unreachable!(), }; *self.module_mut(x, y) ^= invert & !self.isfunction[(y * self.size + x) as usize]; }