From patchwork Wed May 8 14:51:49 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Elder X-Patchwork-Id: 20022 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 2CF2ABDE6B for ; Wed, 8 May 2024 14:52:01 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id D8C4C6343A; Wed, 8 May 2024 16:52:00 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="eKzkA2RI"; 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 69BB261A73 for ; Wed, 8 May 2024 16:51:59 +0200 (CEST) Received: from neptunite.hamster-moth.ts.net (h175-177-049-156.catv02.itscom.jp [175.177.49.156]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 9062EB0B; Wed, 8 May 2024 16:51:55 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1715179916; bh=FxeSsC4JbmS3MVEl8UomlocaWO9SmWr8ylPnI+BKO8w=; h=From:To:Cc:Subject:Date:From; b=eKzkA2RICcNoWP7rbh8+/rJr6i1Ol/gLCIz1gJA043E8TfnD/6wGu5yR1ZutpSUre NMRh1MEuQghXWKcjdsR/PdwGBHT0Ys8ASdGMohwrs4KJXFhfM4TAuqkaWWGTTMSKUz l8JCGv2FoQNMwSdl9+Hkcc9vxj6kiuaPf1hdJ5bE= From: Paul Elder To: libcamera-devel@lists.libcamera.org Cc: Paul Elder Subject: [PATCH] ipa: libipa: camera_sensor_helper: Remove stray semicolon Date: Wed, 8 May 2024 23:51:49 +0900 Message-Id: <20240508145149.1453199-1-paul.elder@ideasonboard.com> X-Mailer: git-send-email 2.39.2 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" Remove a stray semicolon that was apparently causing compilation problems on clang 17. Signed-off-by: Paul Elder --- src/ipa/libipa/camera_sensor_helper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ipa/libipa/camera_sensor_helper.h b/src/ipa/libipa/camera_sensor_helper.h index dcdbe82b..72024afc 100644 --- a/src/ipa/libipa/camera_sensor_helper.h +++ b/src/ipa/libipa/camera_sensor_helper.h @@ -68,7 +68,7 @@ public: static std::vector &factories(); - const std::string &name() const { return name_; }; + const std::string &name() const { return name_; } private: LIBCAMERA_DISABLE_COPY_AND_MOVE(CameraSensorHelperFactoryBase)