From patchwork Mon Oct 28 02:22:17 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Niklas_S=C3=B6derlund?= X-Patchwork-Id: 2252 X-Patchwork-Delegate: niklas.soderlund@ragnatech.se Return-Path: Received: from bin-mail-out-06.binero.net (bin-mail-out-06.binero.net [195.74.38.229]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 2D0F06017E for ; Mon, 28 Oct 2019 03:22:46 +0100 (CET) X-Halon-ID: d1c4772a-f929-11e9-903a-005056917f90 Authorized-sender: niklas@soderlund.pp.se Received: from localhost.localdomain (unknown [93.2.121.143]) by bin-vsp-out-02.atm.binero.net (Halon) with ESMTPA id d1c4772a-f929-11e9-903a-005056917f90; Mon, 28 Oct 2019 03:22:42 +0100 (CET) From: =?utf-8?q?Niklas_S=C3=B6derlund?= To: libcamera-devel@lists.libcamera.org Date: Mon, 28 Oct 2019 03:22:17 +0100 Message-Id: <20191028022224.795355-4-niklas.soderlund@ragnatech.se> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20191028022224.795355-1-niklas.soderlund@ragnatech.se> References: <20191028022224.795355-1-niklas.soderlund@ragnatech.se> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 03/10] libcamera: buffer: Drop friend statment 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: , X-List-Received-Date: Mon, 28 Oct 2019 02:22:47 -0000 The Buffer class do not need to friend PipelineHandler, drop it. Signed-off-by: Niklas Söderlund Reviewed-by: Laurent Pinchart --- include/libcamera/buffer.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/libcamera/buffer.h b/include/libcamera/buffer.h index d7784d9d24ab3f41..c349b995e1eb35ee 100644 --- a/include/libcamera/buffer.h +++ b/include/libcamera/buffer.h @@ -88,7 +88,6 @@ public: private: friend class Camera; - friend class PipelineHandler; friend class Request; friend class Stream; friend class V4L2VideoDevice;