diff --git a/src/Magnum/MeshTools/Interleave.h b/src/Magnum/MeshTools/Interleave.h index ff03bb6d2..825dfc436 100644 --- a/src/Magnum/MeshTools/Interleave.h +++ b/src/Magnum/MeshTools/Interleave.h @@ -133,11 +133,8 @@ would be 21 bytes, causing possible performance loss. will be `std::vector` or `std::array`. @see @ref interleaveInto() -@todo remove `std::enable_if` when deprecated overloads are removed */ -/* enable_if to avoid clash with overloaded function below */ -template typename std::enable_if::value, Containers::Array>::type - interleave(const T& first, const U&... next) +template Containers::Array interleave(const T& first, const U&... next) { /* Compute buffer size and stride */ const std::size_t attributeCount = Implementation::AttributeCount{}(first, next...);