From patchwork Fri Apr 29 21:23:44 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 15755 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 99807C3256 for ; Fri, 29 Apr 2022 21:23:57 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 357EF65645; Fri, 29 Apr 2022 23:23:56 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1651267436; bh=W7KtEl/sAOvB/6I8xCUwUC7EoKFc9a64RuU7V/oyPxw=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=B5Y2tTSpWRZgTtb+YPjzVFW7WRdzK8Wm56TfjjhgVZhRZvr4VBUIYdoKwPBSdo7Zn kfXANZse8jDED8/VJ3lkMXH3II43jxkViTJdgSxbKhuJQ2AXQS7Vilzw7tMcF/WZpf EFVBgpj19rZNJREkRYoEi5Ty+/nnt/X1Zu9VcuKJAazRvA570uAZYK3p5wZSvkqKOA WG1TOqiCZQhlbCDdff12PiRT457CsqzJ2LSa2fYDiC7y6GjBWXTZp5YiiZSndyu4W4 uD41Cwswmj4FpPvhSI8ivz9ScH+3aqr8mFgGsC4taa7ZK5IwsNtC7J8yQ2BmeTZsQ1 jDYKwo8ajl0bg== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 5107A6042F for ; Fri, 29 Apr 2022 23:23:53 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="Dgeph29K"; dkim-atps=neutral Received: from pendragon.lan (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id C2658475; Fri, 29 Apr 2022 23:23:52 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1651267433; bh=W7KtEl/sAOvB/6I8xCUwUC7EoKFc9a64RuU7V/oyPxw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Dgeph29KlzQAdahBdIdJn0VldoczTZh0/6MMPybV8MKvoavlVzhLs9v3+417bg+aR CI/V/GU8blFjRCBXm6bfJaYDm6WNq8KZQnJ+XZLQJiSh0J23MXKPcYHYarPFor/D38 AoiXTB5CzVfv+f45znHEIDTHSwlUSGckNIJlbLrw= To: libcamera-devel@lists.libcamera.org Date: Sat, 30 Apr 2022 00:23:44 +0300 Message-Id: <20220429212348.18063-2-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220429212348.18063-1-laurent.pinchart@ideasonboard.com> References: <20220429212348.18063-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 1/5] libcamera: geometry: Add missing ostream header in geometry.h 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-Patchwork-Original-From: Laurent Pinchart via libcamera-devel From: Laurent Pinchart Reply-To: Laurent Pinchart Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Commit c730dc74795d ("libcamera: geometry: Add operator<< for classes in geometry") added usage of std::ostream in geometry.h but forget to include the corresponding header. Fix it to avoid future compilation breakages if indirect inclusions are changed. Fixes: c730dc74795d ("libcamera: geometry: Add operator<< for classes in geometry") Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- include/libcamera/geometry.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/libcamera/geometry.h b/include/libcamera/geometry.h index d4a144bcd42a..d7fdbe708e6d 100644 --- a/include/libcamera/geometry.h +++ b/include/libcamera/geometry.h @@ -8,6 +8,7 @@ #pragma once #include +#include #include #include