From eccbb175516670f13c6a4f8f9e4ed8bc1228938c Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Wed, 8 Jan 2020 00:27:02 +0200 Subject: v4l2: camera_proxy: Include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- 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 bdd4a6c3..8d1b40da 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 -- cgit v1.2.1