From patchwork Mon Oct 28 02:22:15 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: 2250 Return-Path: Received: from vsp-unauthed02.binero.net (vsp-unauthed02.binero.net [195.74.38.227]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 1FD6A6017C for ; Mon, 28 Oct 2019 03:22:44 +0100 (CET) X-Halon-ID: d01dcbd8-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 d01dcbd8-f929-11e9-903a-005056917f90; Mon, 28 Oct 2019 03:22:40 +0100 (CET) From: =?utf-8?q?Niklas_S=C3=B6derlund?= To: libcamera-devel@lists.libcamera.org Date: Mon, 28 Oct 2019 03:22:15 +0100 Message-Id: <20191028022224.795355-2-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 01/10] libcamera: buffer: Drop forward declaration of BufferPool 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:44 -0000 There is no need to forward declare BufferPool, 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 7b657509ab5f5d41..e14c9bd390a13bfc 100644 --- a/include/libcamera/buffer.h +++ b/include/libcamera/buffer.h @@ -13,7 +13,6 @@ namespace libcamera { -class BufferPool; class Request; class Stream;