Skip to content

Commit

Permalink
Allows clippy::while_immutable_condition
Browse files Browse the repository at this point in the history
  • Loading branch information
ultimaweapon committed Feb 6, 2025
1 parent f6d2598 commit 2d48815
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions kernel/src/uma/keg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ impl UmaKeg {
return None;
}

#[allow(clippy::while_immutable_condition)] // TODO: Remove this.
while self.max_pages != 0 && self.max_pages <= self.pages {
todo!()
}
Expand Down

0 comments on commit 2d48815

Please sign in to comment.