Selaa lähdekoodia

fixed fma error

Nicolas Winkler 4 vuotta sitten
vanhempi
commit
45eb37a515
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      libmandel/include/LightDoubleDouble.h

+ 2 - 2
libmandel/include/LightDoubleDouble.h

@@ -53,13 +53,13 @@ namespace mnd
             return { p, e };
         }
 
-        template<typename T>
+        /*template<typename T>
         inline Pair<T> twoProdFma(T a, T b)
         {
             T p = a * b;
             T e = std::fma(a, b, -p);
             return { p, e };
-        }
+        }*/
     }
 }