From 5646307b71dbfeb3864788c8a57957c594a45975 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Wed, 19 Mar 2025 16:56:11 +0100 Subject: libcamera: base: bound_method: Simplify `invokePack()` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/include/libcamera/base/bound_method.h b/include/libcamera/base/bound_method.h index dd3488ee..507c320d 100644 --- a/include/libcamera/base/bound_method.h +++ b/include/libcamera/base/bound_method.h @@ -98,21 +98,15 @@ public: using PackType = BoundMethodPack; private: - template - std::enable_if_t::value, void> - invokePack(BoundMethodPackBase *pack, std::index_sequence) + template + void invokePack(BoundMethodPackBase *pack, std::index_sequence) { - PackType *args = static_cast(pack); - args->ret_ = invoke(std::get(args->args_)...); - } + [[maybe_unused]] auto *args = static_cast(pack); - 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: -- cgit v1.2.1