add missing FIXME(const-hack)

This commit is contained in:
Ralf Jung 2024-09-26 15:42:37 +02:00
parent b5117538e9
commit ef87a7f663

View File

@ -155,7 +155,7 @@ pub const fn mask(self) -> usize {
!(unsafe { self.as_usize().unchecked_sub(1) })
}
// Remove me once `Ord::max` is usable in const
// FIXME(const-hack) Remove me once `Ord::max` is usable in const
pub(crate) const fn max(a: Self, b: Self) -> Self {
if a.as_usize() > b.as_usize() { a } else { b }
}