forked from AbleOS/holey-bytes
Fixed rounding mode
This commit is contained in:
parent
ee280cd55f
commit
88563b34f3
|
@ -110,7 +110,7 @@ impl TryFrom<u8> for RoundingMode {
|
|||
type Error = ();
|
||||
|
||||
fn try_from(value: u8) -> Result<Self, Self::Error> {
|
||||
(value >= 3)
|
||||
(value <= 3)
|
||||
.then(|| unsafe { core::mem::transmute(value) })
|
||||
.ok_or(())
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue