non passing aztec decoder port

This commit is contained in:
Henry Schimke
2022-09-19 21:48:40 -05:00
parent 3cb5973be2
commit 1b3535c0df
13 changed files with 1131 additions and 894 deletions

View File

@@ -1,6 +1,7 @@
mod common;
mod exceptions;
mod client;
mod aztec;
#[cfg(feature="image")]
mod BufferedImageLuminanceSource;
@@ -840,7 +841,7 @@ impl PartialEq for RXingResultPoint {
}
impl Eq for RXingResultPoint {}
impl RXingResultPoint {
pub fn new(x: f32, y: f32) -> Self {
pub const fn new(x: f32, y: f32) -> Self {
Self { x, y }
}