From patchwork Wed Jul 14 13:02:32 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jean-Michel Hautbois X-Patchwork-Id: 12945 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 B6609C3225 for ; Wed, 14 Jul 2021 13:02:44 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 1EA8A68525; Wed, 14 Jul 2021 15:02:44 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="veHFvfUg"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id E8FD868503 for ; Wed, 14 Jul 2021 15:02:42 +0200 (CEST) Received: from tatooine.ideasonboard.com (unknown [IPv6:2a01:e0a:169:7140:e67c:9465:36df:f139]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 7B02ECC; Wed, 14 Jul 2021 15:02:42 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1626267762; bh=IgpbQIUb0cb2ZeMgnvRtZ9ZFvZVg9o53UurvYm2xGNI=; h=From:To:Cc:Subject:Date:From; b=veHFvfUg7hT/Bk/FB5I7Zp9V5kwAbNE/Q1izYlWHRNzKf7+jRj4O52DQoYAHuLkZt rJPSDz1vFoI0StvCpd24OuevibC78tHLy/sY2kLhXGfiSFlo9q8FqPffjvbw7WR2mc Zd2EECDxl1eCp3uBGf5YFqlTq4AYr2ZV8B83f6+w= From: Jean-Michel Hautbois To: libcamera-devel@lists.libcamera.org Date: Wed, 14 Jul 2021 15:02:32 +0200 Message-Id: <20210714130232.63284-1-jeanmichel.hautbois@ideasonboard.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2] ipa: raspberrypi: Remove unused MetadataPtr 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" The Metadata class defines a shared_ptr named MetadataPtr. It is not used anywhere in the source code, so remove it. Signed-off-by: Jean-Michel Hautbois Reviewed-by: Laurent Pinchart Reviewed-by: Naushir Patuck --- src/ipa/raspberrypi/controller/metadata.hpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ipa/raspberrypi/controller/metadata.hpp b/src/ipa/raspberrypi/controller/metadata.hpp index fd6aac88..51e576cf 100644 --- a/src/ipa/raspberrypi/controller/metadata.hpp +++ b/src/ipa/raspberrypi/controller/metadata.hpp @@ -10,7 +10,6 @@ #include #include -#include #include #include @@ -108,6 +107,4 @@ private: std::map data_; }; -typedef std::shared_ptr MetadataPtr; - } // namespace RPiController