From bca7ed856d25abc24315d142c2c7162287cdcbf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 5 Sep 2019 18:09:55 +0200 Subject: [PATCH] OH GOD compilers I'm sorry. I wonder how GCC 9 was able to survive this. --- src/Magnum/ImageView.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;