From 049bacc267c27fd98676bdf0ea26cdbdf4409eff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Tue, 1 Apr 2025 15:19:36 +0200 Subject: [PATCH] libcamera: controls: Simplify SFINAE template parameter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Just use `void` instead of `std::void_t<>`. Signed-off-by: Barnabás Pőcze Reviewed-by: Laurent Pinchart --- include/libcamera/controls.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libcamera/controls.h b/include/libcamera/controls.h index c970e4b7..44ff4964 100644 --- a/include/libcamera/controls.h +++ b/include/libcamera/controls.h @@ -43,7 +43,7 @@ enum ControlType { namespace details { -template> +template struct control_type { };