diff --git a/src/Magnum/Math/Test/Matrix3Test.cpp b/src/Magnum/Math/Test/Matrix3Test.cpp index 15fce0e7b..a6233b476 100644 --- a/src/Magnum/Math/Test/Matrix3Test.cpp +++ b/src/Magnum/Math/Test/Matrix3Test.cpp @@ -64,7 +64,6 @@ struct Matrix3Test: Corrade::TestSuite::Tester { void constructZero(); void constructConversion(); void constructCopy(); - void convert(); void isRigidTransformation(); @@ -103,7 +102,6 @@ Matrix3Test::Matrix3Test() { &Matrix3Test::constructZero, &Matrix3Test::constructConversion, &Matrix3Test::constructCopy, - &Matrix3Test::convert, &Matrix3Test::isRigidTransformation, diff --git a/src/Magnum/Math/Test/Matrix4Test.cpp b/src/Magnum/Math/Test/Matrix4Test.cpp index e8cfcaa55..3d855e6d5 100644 --- a/src/Magnum/Math/Test/Matrix4Test.cpp +++ b/src/Magnum/Math/Test/Matrix4Test.cpp @@ -66,7 +66,6 @@ struct Matrix4Test: Corrade::TestSuite::Tester { void constructZero(); void constructConversion(); void constructCopy(); - void convert(); void isRigidTransformation(); @@ -114,7 +113,6 @@ Matrix4Test::Matrix4Test() { &Matrix4Test::constructZero, &Matrix4Test::constructConversion, &Matrix4Test::constructCopy, - &Matrix4Test::convert, &Matrix4Test::isRigidTransformation, diff --git a/src/Magnum/Math/Test/MatrixTest.cpp b/src/Magnum/Math/Test/MatrixTest.cpp index cfba8d4f4..5553b6d6f 100644 --- a/src/Magnum/Math/Test/MatrixTest.cpp +++ b/src/Magnum/Math/Test/MatrixTest.cpp @@ -64,7 +64,6 @@ struct MatrixTest: Corrade::TestSuite::Tester { void constructZero(); void constructConversion(); void constructCopy(); - void convert(); void isOrthogonal(); @@ -96,7 +95,6 @@ MatrixTest::MatrixTest() { &MatrixTest::constructZero, &MatrixTest::constructConversion, &MatrixTest::constructCopy, - &MatrixTest::convert, &MatrixTest::isOrthogonal, diff --git a/src/Magnum/Math/Test/Vector2Test.cpp b/src/Magnum/Math/Test/Vector2Test.cpp index a2d62a9ed..5fbf11cff 100644 --- a/src/Magnum/Math/Test/Vector2Test.cpp +++ b/src/Magnum/Math/Test/Vector2Test.cpp @@ -59,7 +59,6 @@ struct Vector2Test: Corrade::TestSuite::Tester { void constructOneValue(); void constructConversion(); void constructCopy(); - void convert(); void access(); @@ -85,7 +84,6 @@ Vector2Test::Vector2Test() { &Vector2Test::constructOneValue, &Vector2Test::constructConversion, &Vector2Test::constructCopy, - &Vector2Test::convert, &Vector2Test::access, diff --git a/src/Magnum/Math/Test/Vector3Test.cpp b/src/Magnum/Math/Test/Vector3Test.cpp index b7859cf00..f3af3b62a 100644 --- a/src/Magnum/Math/Test/Vector3Test.cpp +++ b/src/Magnum/Math/Test/Vector3Test.cpp @@ -60,7 +60,6 @@ struct Vector3Test: Corrade::TestSuite::Tester { void constructParts(); void constructConversion(); void constructCopy(); - void convert(); void access(); @@ -85,7 +84,6 @@ Vector3Test::Vector3Test() { &Vector3Test::constructParts, &Vector3Test::constructConversion, &Vector3Test::constructCopy, - &Vector3Test::convert, &Vector3Test::access, diff --git a/src/Magnum/Math/Test/Vector4Test.cpp b/src/Magnum/Math/Test/Vector4Test.cpp index e340b4cd3..1f56703f8 100644 --- a/src/Magnum/Math/Test/Vector4Test.cpp +++ b/src/Magnum/Math/Test/Vector4Test.cpp @@ -61,7 +61,6 @@ struct Vector4Test: Corrade::TestSuite::Tester { void constructParts(); void constructConversion(); void constructCopy(); - void convert(); void access(); @@ -86,7 +85,6 @@ Vector4Test::Vector4Test() { &Vector4Test::constructParts, &Vector4Test::constructConversion, &Vector4Test::constructCopy, - &Vector4Test::convert, &Vector4Test::access,