Simplified a bit of Rust code.

This commit is contained in:
Project Nayuki 2017-12-28 16:18:45 +00:00
parent 908dbbfb31
commit f5be34c3fc
1 changed files with 1 additions and 1 deletions

View File

@ -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];
}