From patchwork Mon Mar 31 16:03:01 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: 23085 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 8E6F2C323E for ; Mon, 31 Mar 2025 16:03:08 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 916F368981; Mon, 31 Mar 2025 18:03:07 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="qEBC4qz9"; 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 D1AC868967 for ; Mon, 31 Mar 2025 18:03:05 +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 2CD7F725 for ; Mon, 31 Mar 2025 18:01:14 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1743436874; bh=qCR4xxZ9EEZMq8hcisMpPI3tIH0AeY/xwfM345wnlpw=; h=From:To:Subject:Date:From; b=qEBC4qz9ozG5sqsHKyTYLkZyJPueaSAXngxE0cis8h0yuykOqOUMfMdTCC7p2L4WN AXDNJyytJnb+DN3uiRMq5XuP1/ZszLSa5CquQKurImW20n68tjXu7G6fkfZn9viAOg Kj3FFZ18wwa388lB+ex+zFBvCNDa4mmziskxWa2c= From: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= To: libcamera-devel@lists.libcamera.org Subject: [PATCH v1] libcamera: base: bound_method: Simplify `invokePack()` Date: Mon, 31 Mar 2025 18:03:01 +0200 Message-ID: <20250331160301.534243-1-barnabas.pocze@ideasonboard.com> X-Mailer: git-send-email 2.49.0 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" Use `if constexpr` instead of SFINAE to handle return values of type `void`. Signed-off-by: Barnabás Pőcze Reviewed-by: Laurent Pinchart Acked-by: Kieran Bingham --- include/libcamera/base/bound_method.h | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/include/libcamera/base/bound_method.h b/include/libcamera/base/bound_method.h index dd3488eeb..aad75c02a 100644 --- a/include/libcamera/base/bound_method.h +++ b/include/libcamera/base/bound_method.h @@ -98,21 +98,16 @@ public: using PackType = BoundMethodPack; private: - template - std::enable_if_t::value, void> + template + void invokePack(BoundMethodPackBase *pack, std::index_sequence) { PackType *args = static_cast(pack); - args->ret_ = invoke(std::get(args->args_)...); - } - template - std::enable_if_t::value, void> - invokePack(BoundMethodPackBase *pack, std::index_sequence) - { - /* args is effectively unused when the sequence I is empty. */ - PackType *args [[gnu::unused]] = static_cast(pack); - invoke(std::get(args->args_)...); + if constexpr (!std::is_void_v) + args->ret_ = invoke(std::get(args->args_)...); + else + invoke(std::get(args->args_)...); } public: