From ab0cba2573a2b887d941e02795c6387af1533472 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 8 Mar 2020 20:53:58 +0100 Subject: [PATCH] Math: minor cleanup. --- src/Magnum/Math/Test/TypeTraitsTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magnum/Math/Test/TypeTraitsTest.cpp b/src/Magnum/Math/Test/TypeTraitsTest.cpp index 66c9608b0..fbc843e7d 100644 --- a/src/Magnum/Math/Test/TypeTraitsTest.cpp +++ b/src/Magnum/Math/Test/TypeTraitsTest.cpp @@ -280,7 +280,7 @@ void TypeTraitsTest::equalsHalf() { CORRADE_VERIFY(TypeTraits::equals(Half(UnsignedShort(0xabcd)), Half(UnsignedShort(0xabcd)))); CORRADE_VERIFY(!TypeTraits::equals(Half(UnsignedShort(0xabcd)), - Half(UnsignedShort(0xabce)))); + Half(UnsignedShort(0xabce)))); } template void TypeTraitsTest::equalsFloatingPoint0() {