From patchwork Wed Jun 19 14:41:58 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 1480 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 6858C61A15 for ; Wed, 19 Jun 2019 16:42:19 +0200 (CEST) Received: from pendragon.bb.dnainternet.fi (dfj612yhrgyx302h3jwwy-3.rev.dnainternet.fi [IPv6:2001:14ba:21f5:5b00:ce28:277f:58d7:3ca4]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id CCD24333; Wed, 19 Jun 2019 16:42:18 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1560955339; bh=oOxl2z8tkmPxku3WP+aIZmAh2X5xN8f1YaCusSmt3cc=; h=From:To:Cc:Subject:Date:From; b=cHJ1K06UTNQT7lGK8Lftk6DZrVX3VBkThQf2I4BmmOZDCGvfbUxVDc1oZtiPQVVKg RG7Twp5m6P+fttuFM1Um/gZ2DIMwRv8AQGsiUF9rYPFgS5HY30fkqANNQUZcjWlEj4 DcM9pOc/lajNjyZ0yXirdKO6psE5T2nBP2vJf0eQ= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Wed, 19 Jun 2019 17:41:58 +0300 Message-Id: <20190619144158.28900-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: stream: Include missing array header 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: Wed, 19 Jun 2019 14:42:19 -0000 The file uses the std::array class but doesn't include the corresponding header. This breaks compilation with clang and libc++. Fix it. Signed-off-by: Laurent Pinchart Reviewed-by: Niklas Söderlund Reviewed-by: Jacopo Mondi --- src/libcamera/stream.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libcamera/stream.cpp b/src/libcamera/stream.cpp index d60f83246e13..d8e87c62281c 100644 --- a/src/libcamera/stream.cpp +++ b/src/libcamera/stream.cpp @@ -8,6 +8,7 @@ #include #include +#include #include #include #include