Skip to content

v0.5.0

Latest

Choose a tag to compare

@github-actions github-actions released this 03 Apr 19:10
Fix infinite recursion in OrdF32 Ord/PartialOrd (stack overflow on CI)

OrdF32::cmp called self.partial_cmp which called self.cmp creating an
infinite recursion. Break the cycle by calling self.0.partial_cmp
directly on the inner f32.