Add comment about the #[allow]

This commit is contained in:
Gwilym Kuiper 2022-03-18 22:02:07 +00:00
parent ccdb0e4921
commit 60657126ad

View file

@ -9,6 +9,8 @@ impl Palette16 {
Palette16 { colours }
}
// Clippy bug: claims that index is only used in recursion. I can't reproduce in
// other examples, even just copy pasting this struct and impl into a blank project :/
#[allow(clippy::only_used_in_recursion)]
pub fn update_colour(&mut self, index: usize, colour: u16) {
self.colours[index] = colour;