From 31960290d576432f77fbb478fa9bb4efabaeddce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 20 May 2020 13:42:56 +0200 Subject: [PATCH] MeshTools: add a comment to the test. So I don't spend ages searching for where the heck are the other overloads tested, if at all. --- src/Magnum/MeshTools/Test/RemoveDuplicatesTest.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Magnum/MeshTools/Test/RemoveDuplicatesTest.cpp b/src/Magnum/MeshTools/Test/RemoveDuplicatesTest.cpp index 1c10682eb..2adb3ebe7 100644 --- a/src/Magnum/MeshTools/Test/RemoveDuplicatesTest.cpp +++ b/src/Magnum/MeshTools/Test/RemoveDuplicatesTest.cpp @@ -38,9 +38,11 @@ namespace Magnum { namespace MeshTools { namespace Test { namespace { struct RemoveDuplicatesTest: TestSuite::Tester { explicit RemoveDuplicatesTest(); + /* These test also the InPlace variant */ void removeDuplicates(); void removeDuplicatesNonContiguous(); void removeDuplicatesIntoWrongOutputSize(); + template void removeDuplicatesIndexedInPlace(); void removeDuplicatesIndexedInPlaceSmallType(); void removeDuplicatesIndexedInPlaceEmptyIndices();