summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qrect.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2020-06-16 10:51:41 +0200
committerLars Knoll <lars.knoll@qt.io>2020-06-17 22:05:21 +0200
commita42dd2ffe0565d827d1e06f79c4d0973fa5a71c7 (patch)
tree57660fa2300368731d9975612e2a5da79bb25dd1 /src/corelib/tools/qrect.h
parent4d90725e77a2a5d8171f84697031deb227f72917 (diff)
Cleanup float-equal warnings
Consistently use the macro from qcompilerdetection.h instead of manually disabling the warning for three different compilers. Change-Id: Id59d30047c8a504e1082d7e47c02f4746fddf9d6 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
Diffstat (limited to 'src/corelib/tools/qrect.h')
-rw-r--r--src/corelib/tools/qrect.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/corelib/tools/qrect.h b/src/corelib/tools/qrect.h
index c6bfc1a50d..1530ed2623 100644
--- a/src/corelib/tools/qrect.h
+++ b/src/corelib/tools/qrect.h
@@ -663,9 +663,7 @@ Q_DECL_CONSTEXPR inline QRectF::QRectF(const QRect &r) noexcept
}
QT_WARNING_PUSH
-QT_WARNING_DISABLE_CLANG("-Wfloat-equal")
-QT_WARNING_DISABLE_GCC("-Wfloat-equal")
-QT_WARNING_DISABLE_INTEL(1572)
+QT_WARNING_DISABLE_FLOAT_COMPARE
Q_DECL_CONSTEXPR inline bool QRectF::isNull() const noexcept
{ return w == 0. && h == 0.; }