added `#[allow(unused)]` to `Image` implementation

This commit is contained in:
Sven Vogel 2023-06-04 22:32:53 +02:00
parent 418416425b
commit fcb904c5cd
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@ where
pixels: Vec<(T, T, T, T)>,
}
#[allow(unused)]
impl<T> Image<T>
where
T: Add + Sub + Mul + Div + PartialEq + Default + Copy,