mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-13 10:59:54 -04:00
Currently the classify procedures checks for NaNs using the check `x != x`, which is always false for NaNs and therefore that case is never entered. Using `!(x == x)` will work on the other hand.