diff --git a/src/Magnum/ImageView.h b/src/Magnum/ImageView.h index 576446e2d..334fb90d1 100644 --- a/src/Magnum/ImageView.h +++ b/src/Magnum/ImageView.h @@ -356,7 +356,7 @@ template class ImageView { template explicit ImageView(U format, const VectorTypeFor& size) noexcept: ImageView{{}, format, size} {} /** @brief Construct from a view of lower dimension count */ - template::type> /*implicit*/ ImageView(const ImageView& other) noexcept; + template::type> /*implicit*/ ImageView(const ImageView& other) noexcept; /** @brief Convert a mutable view to a const one */ template::value &&!std::is_const::value>::type> /*implicit*/ ImageView(const ImageView& other) noexcept; @@ -725,7 +725,7 @@ template class CompressedImageView { template explicit CompressedImageView(U format, const VectorTypeFor& size) noexcept: CompressedImageView{{}, format, size} {} /** @brief Construct from a view of lower dimension count */ - template::type> /*implicit*/ CompressedImageView(const CompressedImageView& other) noexcept; + template::type> /*implicit*/ CompressedImageView(const CompressedImageView& other) noexcept; /** @brief Convert a mutable view to a const one */ template::value &&!std::is_const::value>::type> /*implicit*/ CompressedImageView(const CompressedImageView& other) noexcept;