From 7328fa9ab40870c85feea2d322f77d7f11e0d7a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 2 Feb 2022 11:28:17 +0100 Subject: [PATCH] Math: remove obsolete comments in a test -- this is a static assert now. --- src/Magnum/Math/Test/FunctionsTest.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/Magnum/Math/Test/FunctionsTest.cpp b/src/Magnum/Math/Test/FunctionsTest.cpp index b4d67e73e..a93e7c5a6 100644 --- a/src/Magnum/Math/Test/FunctionsTest.cpp +++ b/src/Magnum/Math/Test/FunctionsTest.cpp @@ -449,9 +449,6 @@ void FunctionsTest::fma() { Vector3( 3.0f, 2.0f, -1.0f), Vector3(0.75f, 0.25f, 0.1f)), Vector3(6.75f, 3.25f, -0.4f)); - - /* Not testing wrapped types as the resulting unit is less clear -- convert - to an unitless type first */ } void FunctionsTest::logIntegral() { @@ -465,14 +462,10 @@ void FunctionsTest::log2() { void FunctionsTest::log() { CORRADE_COMPARE(Math::log(2.0f), 0.693147f); - - /* Not testing wrapped types -- what unit should have degrees squared? */ } void FunctionsTest::exp() { CORRADE_COMPARE(Math::exp(0.693147f), 2.0f); - - /* Not testing wrapped types -- what unit should have degrees squared? */ } void FunctionsTest::div() {