From 677b24a8077e3e88d709e1ba14caf1037c3214c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 27 Feb 2020 00:46:45 +0100 Subject: [PATCH] MeshTools: doc++ --- src/Magnum/MeshTools/Test/RemoveDuplicatesTest.cpp | 2 ++ src/Magnum/MeshTools/Test/SubdivideTest.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/Magnum/MeshTools/Test/RemoveDuplicatesTest.cpp b/src/Magnum/MeshTools/Test/RemoveDuplicatesTest.cpp index b349addd1..3c932751e 100644 --- a/src/Magnum/MeshTools/Test/RemoveDuplicatesTest.cpp +++ b/src/Magnum/MeshTools/Test/RemoveDuplicatesTest.cpp @@ -42,6 +42,8 @@ struct RemoveDuplicatesTest: TestSuite::Tester { void removeDuplicatesIndexedInPlaceSmallType(); void removeDuplicatesIndexedInPlaceEmptyIndices(); void removeDuplicatesIndexedInPlaceEmptyIndicesVertices(); + + /* this is additionally regression-tested in PrimitivesIcosphereTest */ }; RemoveDuplicatesTest::RemoveDuplicatesTest() { diff --git a/src/Magnum/MeshTools/Test/SubdivideTest.cpp b/src/Magnum/MeshTools/Test/SubdivideTest.cpp index 9617af221..390b898f4 100644 --- a/src/Magnum/MeshTools/Test/SubdivideTest.cpp +++ b/src/Magnum/MeshTools/Test/SubdivideTest.cpp @@ -41,6 +41,8 @@ struct SubdivideTest: TestSuite::Tester { template void subdivideInPlace(); void subdivideInPlaceWrongIndexCount(); void subdivideInPlaceSmallIndexType(); + + /* this is additionally regression-tested in PrimitivesIcosphereTest */ }; typedef Math::Vector<1, Int> Vector1;