[core] Make Shape::is_promotable() const

This commit is contained in:
Eryn Wells 2025-07-12 17:09:55 -07:00
parent 484fcf342e
commit b3ff8dec49

View file

@ -70,7 +70,7 @@ impl Shape {
}
#[must_use]
pub fn is_promotable(&self) -> bool {
pub const fn is_promotable(&self) -> bool {
matches!(self, Self::Knight | Self::Bishop | Self::Rook | Self::Queen)
}