Browse Source

MeshTools: improve coverage BY ONE WHOLE LINE.

mousecapture
Vladimír Vondruš 6 years ago
parent
commit
6f535632f4
  1. 2
      src/Magnum/MeshTools/CompressIndices.cpp

2
src/Magnum/MeshTools/CompressIndices.cpp

@ -68,7 +68,7 @@ std::tuple<Containers::Array<char>, MeshIndexType, UnsignedInt, UnsignedInt> com
break;
default:
CORRADE_ASSERT(false, "MeshTools::compressIndices(): no type able to index" << minmax.second << "elements.", {});
CORRADE_ASSERT(false, "MeshTools::compressIndices(): no type able to index" << minmax.second << "elements.", {}); /* LCOV_EXCL_LINE */
}
return std::make_tuple(std::move(data), type, minmax.first, minmax.second);

Loading…
Cancel
Save