From patchwork Tue Jan 7 22:30:40 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 2525 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 4751160652 for ; Tue, 7 Jan 2020 23:30:55 +0100 (CET) Received: from pendragon.bb.dnainternet.fi (81-175-216-236.bb.dnainternet.fi [81.175.216.236]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id BAB2F52F for ; Tue, 7 Jan 2020 23:30:54 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1578436254; bh=STR08brHF7qAa2JtHTnvVlxztUey4kfexbLq3HXHgxA=; h=From:To:Subject:Date:From; b=gOLJtF7AhLba+/+fWfXQZ1l6eMIwbtEECbXO15GlClgHtfaVpr/Zs3McC5ohOnVil 8XqYUSSOg8SB6An8VXyugYeUrt1RvKc1DMEN3hyIYCz950q+6dudmkzwPv7SXqL5lJ 65j7UPeSMvOJkrv8hsi2pxt/Jo5MfCQkzKnRa3m0= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Wed, 8 Jan 2020 00:30:40 +0200 Message-Id: <20200107223040.12294-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.24.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] v4l2: camera_proxy: Include 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: Tue, 07 Jan 2020 22:30:55 -0000 Commit 29c5508075c1 ("v4l2: camera_proxy: Create format info array") introduced usage of the std::array template class, but didn't include the corresponding header. This may cause a compilation breakage in the future if the indirect include of disappears due to unrelated changes. Fix it. Fixed: 29c5508075c1 ("v4l2: camera_proxy: Create format info array") Signed-off-by: Laurent Pinchart Reviewed-by: Niklas Söderlund Reviewed-by: Jacopo Mondi --- src/v4l2/v4l2_camera_proxy.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/v4l2/v4l2_camera_proxy.cpp b/src/v4l2/v4l2_camera_proxy.cpp index bdd4a6c3475d..8d1b40da7367 100644 --- a/src/v4l2/v4l2_camera_proxy.cpp +++ b/src/v4l2/v4l2_camera_proxy.cpp @@ -8,6 +8,7 @@ #include "v4l2_camera_proxy.h" #include +#include #include #include #include