From 686b915bc3e5cf1d98e59770dfb49f93ca10ec30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 25 Nov 2020 18:31:59 +0100 Subject: [PATCH] Math: this test wasn't right. Uncovered after the latest Emscripten-related update to CORRADE_LONG_DOUBLE_SAME_AS_DOUBLE. --- src/Magnum/Math/Test/TypeTraitsTest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Magnum/Math/Test/TypeTraitsTest.cpp b/src/Magnum/Math/Test/TypeTraitsTest.cpp index ee71de013..8116e384b 100644 --- a/src/Magnum/Math/Test/TypeTraitsTest.cpp +++ b/src/Magnum/Math/Test/TypeTraitsTest.cpp @@ -85,11 +85,11 @@ struct { 5.0e-14 #endif }, - {"small", 1.0e-6f, 5.0e-6f, -1.0e-15, 5.0e-15, 1.0e-18l, + {"small", 1.0e-6f, 5.0e-6f, -1.0e-15, 5.0e-15, #ifndef CORRADE_LONG_DOUBLE_SAME_AS_DOUBLE - 5.0e-18l + 1.0e-18l, 5.0e-18l #else - 5.0e-15 + 1.0e-15l, 5.0e-15l #endif }, {"large", 12345.0f, 0.2f, 12345678901234.0, 0.2,