From 2b9dda3e4c6aeb294f38e827c0d98ac63d2863b3 Mon Sep 17 00:00:00 2001 From: Fabian Kosmale Date: Thu, 10 Dec 2020 09:36:42 +0100 Subject: QV4 Engine: Remove MSVC special casing This patch removes a workaround for old versions of MSVC; we should be able to rely on the standard library nowadays. Original-patch-by: Alexander Neumann Fixes: QTBUG-89203 Change-Id: I8047565000fc7e4e3b8ac28584ff4a479b648274 Reviewed-by: Ulf Hermann (cherry picked from commit fb4de27768935393744cbd67e9789d325e70e742) --- src/qml/jsruntime/qv4global_p.h | 15 --------------- src/qml/jsruntime/qv4mathobject.cpp | 1 - src/qml/jsruntime/qv4stringobject.cpp | 4 ++-- 3 files changed, 2 insertions(+), 18 deletions(-) (limited to 'src/qml') diff --git a/src/qml/jsruntime/qv4global_p.h b/src/qml/jsruntime/qv4global_p.h index ace070c683..77f8fe75d0 100644 --- a/src/qml/jsruntime/qv4global_p.h +++ b/src/qml/jsruntime/qv4global_p.h @@ -64,21 +64,6 @@ #include #include -#if defined(Q_CC_MSVC) -#include -#include - -namespace std { - -inline bool isinf(double d) { return !_finite(d) && !_isnan(d); } -inline bool isnan(double d) { return !!_isnan(d); } -inline bool isfinite(double d) { return _finite(d); } - -} // namespace std - -inline double trunc(double d) { return d > 0 ? floor(d) : ceil(d); } -#endif - // Do certain things depending on whether the JIT is enabled or disabled #if QT_CONFIG(qml_jit) diff --git a/src/qml/jsruntime/qv4mathobject.cpp b/src/qml/jsruntime/qv4mathobject.cpp index 07440047d4..c6b74e7aba 100644 --- a/src/qml/jsruntime/qv4mathobject.cpp +++ b/src/qml/jsruntime/qv4mathobject.cpp @@ -47,7 +47,6 @@ #include #include -#include #include using namespace QV4; diff --git a/src/qml/jsruntime/qv4stringobject.cpp b/src/qml/jsruntime/qv4stringobject.cpp index e41c1030b3..14c1e3ed54 100644 --- a/src/qml/jsruntime/qv4stringobject.cpp +++ b/src/qml/jsruntime/qv4stringobject.cpp @@ -531,9 +531,9 @@ ReturnedValue StringPrototype::method_lastIndexOf(const FunctionObject *b, const if (std::isnan(position)) position = +qInf(); else - position = trunc(position); + position = std::trunc(position); - int pos = trunc(qMin(qMax(position, 0.0), double(value.length()))); + int pos = std::trunc(qMin(qMax(position, 0.0), double(value.length()))); if (!searchString.isEmpty() && pos == value.length()) --pos; if (searchString.isNull() && pos == 0) -- cgit v1.2.3