From e9a574f948989cf879d606cef2141b834c512369 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 14 May 2020 18:09:57 +0200 Subject: [PATCH] MeshTools: why am I discovering all those weird things today. --- src/Magnum/MeshTools/Test/CompressIndicesTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magnum/MeshTools/Test/CompressIndicesTest.cpp b/src/Magnum/MeshTools/Test/CompressIndicesTest.cpp index 00bd59df4..39d9263ac 100644 --- a/src/Magnum/MeshTools/Test/CompressIndicesTest.cpp +++ b/src/Magnum/MeshTools/Test/CompressIndicesTest.cpp @@ -227,7 +227,7 @@ void CompressIndicesTest::compressErasedWrongIndexSize() { std::stringstream out; Error redirectError{&out}; - compressIndices(Containers::StridedArrayView2D{indices, {6, 3}}.every(2)); + compressIndices(Containers::StridedArrayView2D{indices, {6, 3}}); CORRADE_COMPARE(out.str(), "MeshTools::compressIndices(): expected index type size 1, 2 or 4 but got 3\n"); }