[core] Make Shape::is_promotable() const

This commit is contained in:
Eryn Wells 2025-07-12 17:09:55 -07:00
parent b4536ffbe3
commit 7d3fd4b20a

View file

@ -69,7 +69,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)
}