summaryrefslogtreecommitdiff
path: root/kms++util/src/conv-gray.h
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ideasonboard.com>2025-04-22 10:50:46 +0300
committerTomi Valkeinen <tomi.valkeinen@ideasonboard.com>2025-04-22 10:51:48 +0300
commit1192380e2dee300be7dabcc42bf716cf8370a500 (patch)
tree894e18a16d9e3ec269e709ab9673f04a6a3d9d0f /kms++util/src/conv-gray.h
parent7a4e4cbf5e70cd304b751f9862792e0d6af85eb1 (diff)
kms++utils: conv: Compilation fix for clang 15
Diffstat (limited to 'kms++util/src/conv-gray.h')
-rw-r--r--kms++util/src/conv-gray.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kms++util/src/conv-gray.h b/kms++util/src/conv-gray.h
index ecb5bae..fed8c5c 100644
--- a/kms++util/src/conv-gray.h
+++ b/kms++util/src/conv-gray.h
@@ -37,8 +37,8 @@ using Y10_P32_Layout = FormatLayout<PlaneLayout<uint32_t,
template<typename Layout> class Y_Writer
{
- using Plane = Layout::template plane<0>;
- using TStorage = Plane::storage_type;
+ using Plane = typename Layout::template plane<0>;
+ using TStorage = typename Plane::storage_type;
static_assert(Layout::num_planes == 1);
static_assert(Plane::template component_count<ComponentType::Y>() >= 1);