From patchwork Thu Jan 3 01:31:09 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 142 Return-Path: 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 CCB6A60B31 for ; Thu, 3 Jan 2019 02:30:15 +0100 (CET) Received: from avalon.bb.dnainternet.fi (dfj612ybrt5fhg77mgycy-3.rev.dnainternet.fi [IPv6:2001:14ba:21f5:5b00:2e86:4862:ef6a:2804]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 4B196505 for ; Thu, 3 Jan 2019 02:30:15 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1546479015; bh=mSIEpG/QTxfe8yGjk2dU822k2Iy4YNqZtFVYTE1x6s4=; h=From:To:Subject:Date:In-Reply-To:References:From; b=mwVgE5tzhLz6JdScZ5aX5dDfirZkrrNQiYSywoT4FYbvRpUFcCC+JdkSwbnxmp7vZ kbG3ZXjFsxg0a3oiMSxFYUNva0nnxOAN1IuZpWKBYpxYAI62yK/204EDVlp4oxxtF7 L01Eph/gouxB28lLAib+OOuhrUBz6GyU8TJh7xf8= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Thu, 3 Jan 2019 03:31:09 +0200 Message-Id: <20190103013110.6849-8-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.19.2 In-Reply-To: <20190103013110.6849-1-laurent.pinchart@ideasonboard.com> References: <20190103013110.6849-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 8/9] libcamera: pipeline_handler: Remove unneeded forward declaration X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Jan 2019 01:30:16 -0000 There's no need to forward-declare the PipelineManagerFactory class. Remove it. Signed-off-by: Laurent Pinchart Reviewed-by: Niklas Söderlund --- src/libcamera/include/pipeline_handler.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libcamera/include/pipeline_handler.h b/src/libcamera/include/pipeline_handler.h index 00568c7052c0..fdf8b8db2e0a 100644 --- a/src/libcamera/include/pipeline_handler.h +++ b/src/libcamera/include/pipeline_handler.h @@ -16,7 +16,6 @@ namespace libcamera { class DeviceEnumerator; -class PipelineHandlerFactory; class PipelineHandler {