From patchwork Tue Oct 20 09:15:02 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hirokazu Honda X-Patchwork-Id: 10129 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 6F965BDB1F for ; Tue, 20 Oct 2020 09:15:23 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 3C42461394; Tue, 20 Oct 2020 11:15:23 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=chromium.org header.i=@chromium.org header.b="mE2VYarc"; dkim-atps=neutral Received: from mail-pl1-x642.google.com (mail-pl1-x642.google.com [IPv6:2607:f8b0:4864:20::642]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id E0384613CD for ; Tue, 20 Oct 2020 11:15:20 +0200 (CEST) Received: by mail-pl1-x642.google.com with SMTP id d23so700960pll.7 for ; Tue, 20 Oct 2020 02:15:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chromium.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=J6HSQHVSouRHnz9ebEBR+Wsmje+/euMmVgCkqhtoMa4=; b=mE2VYarcZ6cGh8SaKbSu7oicLCmaj6q/ylUWdj6sL0BvqHLLsDg1eTuxWSS3XD9iBI Na34qoePm4QBkQXKk6r/eUlS2NvVIhMHnaG/AkN4qoM3fi8vqKDG1B0HsygWClzXEvAJ 8QvjseujyeoBbdkYc/WpUYVTJOAWohkkCFS4I= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=J6HSQHVSouRHnz9ebEBR+Wsmje+/euMmVgCkqhtoMa4=; b=k4YWGZKkTuRsLbsr4VnsvJUp1UVp75Nsluy4i52aaDnNHefQk/ho5tutX4ONo4pXTL 2V/2aDyKeAwif1fAuU2NbKswDXDdhxL8HL6jNLI+j36kn7h92QaUK5RBsNGpBJFZ3bvE HJw0LNESLIKv4yvtF5rwj6u34sm7/+Eb2W+PREog0KCErQiadQ4uh9pTETSGTl2Ccfzf XNL5HzZ1X5lfFbgqIEI6Tj6AnWy0lIbDLvnhU96eajow22JPiGslwj5BRx4dgcYIXD4t ZNQqPhBLJZiXN5ZfswKati5y7CKzfH0dnLJLvz8OGXdnmDbOCtbxeqznZo9LlZkUCKo6 zTvg== X-Gm-Message-State: AOAM5301jZIC9xXEveRmKhsvVLRF3yVL0Ybxvy+SSOobGEitKhh69nFk cG3ps4akEcDxiekJmIeyHp1AeevTMhl3xg== X-Google-Smtp-Source: ABdhPJzZrutZAj05Fe1e9TvVe90c10eyQXCJj2JnfUVQXdQsJ8EO+bzhXz3yBxR2ablLA/G/HY2+tg== X-Received: by 2002:a17:90a:e698:: with SMTP id s24mr1983609pjy.72.1603185319299; Tue, 20 Oct 2020 02:15:19 -0700 (PDT) Received: from hiroh.tok.corp.google.com ([2401:fa00:8f:2:de4a:3eff:fe7d:f78f]) by smtp.gmail.com with ESMTPSA id p8sm1482014pgs.34.2020.10.20.02.15.17 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 20 Oct 2020 02:15:18 -0700 (PDT) From: Hirokazu Honda To: libcamera-devel@lists.libcamera.org Date: Tue, 20 Oct 2020 18:15:02 +0900 Message-Id: <20201020091505.138898-5-hiroh@chromium.org> X-Mailer: git-send-email 2.29.0.rc1.297.gfa9743e501-goog In-Reply-To: <20201020091505.138898-1-hiroh@chromium.org> References: <20201020091505.138898-1-hiroh@chromium.org> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2 5/8] include: libcamera: Omit extra semicolons 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: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" This removes the unnecessary semicolon in span.h. Signed-off-by: Hirokazu Honda Reviewed-by: Laurent Pinchart --- include/libcamera/span.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libcamera/span.h b/include/libcamera/span.h index a53a80b..c0e4399 100644 --- a/include/libcamera/span.h +++ b/include/libcamera/span.h @@ -407,6 +407,6 @@ private: size_type size_; }; -}; /* namespace libcamera */ +} /* namespace libcamera */ #endif /* __LIBCAMERA_SPAN_H__ */