From e69e81f16caa74fa108dfe7f22b07523c03431da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 14 Apr 2018 23:04:52 +0200 Subject: [PATCH] Fix function signature. Apparently nobody ever called this function. Argh. --- src/Magnum/ImageView.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magnum/ImageView.h b/src/Magnum/ImageView.h index 50ce186b7..8eea90a85 100644 --- a/src/Magnum/ImageView.h +++ b/src/Magnum/ImageView.h @@ -252,7 +252,7 @@ template class CompressedImageView { * @requires_gl Compressed pixel storage is hardcoded in OpenGL ES and * WebGL. */ - std::tuple, std::size_t> dataProperties() const { + std::tuple, VectorTypeFor, std::size_t> dataProperties() const { return Implementation::compressedImageDataProperties(*this); } #endif