| commit | dde0cf9eafed91c88d9999a294ea32fe0e8aa4bc | [log] |
|---|---|---|
| author | Stephan Bergmann <sbergman@redhat.com> | Wed Mar 11 08:36:56 2020 +0100 |
| committer | Stephan Bergmann <sbergman@redhat.com> | Wed Mar 11 09:22:55 2020 +0100 |
| tree | 7de0d3ada44d105459545cd08b5da1f5648f29e7 | |
| parent | 12ddf044693fbe205844d796c2f31bb706f63584 [diff] |
Get rid of some SAL_MATH_FINITE use Change-Id: I850efb6215c95d356d42e19e639c578c377d1507 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90316 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
diff --git a/sal/qa/inc/valueequal.hxx b/sal/qa/inc/valueequal.hxx index 0a11a2a..5e6d47d 100644 --- a/sal/qa/inc/valueequal.hxx +++ b/sal/qa/inc/valueequal.hxx
@@ -22,9 +22,7 @@ #include <sal/config.h> #include <math.h> #include <sal/mathconf.h> #include <cmath> #define PREC_float 1 #define PREC_double 2 @@ -33,7 +31,7 @@ template<class T> bool is_equal(T x, T y, sal_Int16 _nPrec) { if (!(SAL_MATH_FINITE(x) && SAL_MATH_FINITE(y))) { if (!(std::isfinite(x) && std::isfinite(y))) { return x == y; }