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;
    }