From 1192380e2dee300be7dabcc42bf716cf8370a500 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Tue, 22 Apr 2025 10:50:46 +0300 Subject: kms++utils: conv: Compilation fix for clang 15 --- kms++util/src/conv-gray.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kms++util/src/conv-gray.h') 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 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() >= 1); -- cgit v1.2.3