From patchwork Tue Apr 1 13:19:36 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= X-Patchwork-Id: 23095 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id CEF62C3213 for ; Tue, 1 Apr 2025 13:19:50 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 6739368988; Tue, 1 Apr 2025 15:19:47 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="Sjqr8d4W"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 5B74B68981 for ; Tue, 1 Apr 2025 15:19:43 +0200 (CEST) Received: from pb-laptop.local (185.221.143.221.nat.pool.zt.hu [185.221.143.221]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 019718DB for ; Tue, 1 Apr 2025 15:17:50 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1743513471; bh=L9N1rXNqi3I/kPFv6P1DWnLaWWql86AGQ6C3Ml2pQ+g=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Sjqr8d4WLiKbwxdqOcl8fq964/QY6HMxlsG81j7liEaKPHxtVSxlVfJ7b5iSXxTn5 qP13xvkv/x+l8qq60X9Q5n2AyiphwDCgJX6CXFu1PL46wY4X4oRXMT1O2zJ75MzoL1 YkAhuZ34bP1SfY54SWJVdw0BIY/fI/AoU8Edxv1I= From: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= To: libcamera-devel@lists.libcamera.org Subject: [PATCH v1 1/4] libcamera: controls: Simplify SFINAE template parameter Date: Tue, 1 Apr 2025 15:19:36 +0200 Message-ID: <20250401131939.749583-2-barnabas.pocze@ideasonboard.com> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250401131939.749583-1-barnabas.pocze@ideasonboard.com> References: <20250401131939.749583-1-barnabas.pocze@ideasonboard.com> MIME-Version: 1.0 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" 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 4bfe9615c..c1919d864 100644 --- a/include/libcamera/controls.h +++ b/include/libcamera/controls.h @@ -43,7 +43,7 @@ enum ControlType { namespace details { -template> +template struct control_type { };