diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-03-11 08:36:56 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-03-11 09:22:55 +0100 |
commit | dde0cf9eafed91c88d9999a294ea32fe0e8aa4bc (patch) | |
tree | 7de0d3ada44d105459545cd08b5da1f5648f29e7 /sal | |
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>
Diffstat (limited to 'sal')
-rw-r--r-- | sal/qa/inc/valueequal.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sal/qa/inc/valueequal.hxx b/sal/qa/inc/valueequal.hxx index 0a11a2a89428..5e6d47d30f7a 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; } |