瀏覽代碼

rational: check for NaN when approximating floats

We had a test for NaN already, but thanks to undefined casts (#119) it
was only passing by luck -- on armv7hl it failed:

     https://bugzilla.redhat.com/show_bug.cgi?id=1511187

Now we check for NaN explicitly.
Josh Stone 7 年之前
父節點
當前提交
b67f1bd6d6
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      rational/src/lib.rs

+ 1 - 1
rational/src/lib.rs

@@ -774,7 +774,7 @@ fn approximate_float_unsigned<T, F>(val: F, max_error: F, max_iterations: usize)
     // Continued fractions algorithm
     // http://mathforum.org/dr.math/faq/faq.fractions.html#decfrac
 
-    if val < F::zero() {
+    if val < F::zero() || val.is_nan() {
         return None;
     }