From patchwork Tue Oct 22 13:35:51 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 2207 Return-Path: Received: from relay10.mail.gandi.net (relay10.mail.gandi.net [217.70.178.230]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id E3B8D6137A for ; Tue, 22 Oct 2019 15:34:06 +0200 (CEST) Received: from uno.localdomain (143.121.2.93.rev.sfr.net [93.2.121.143]) (Authenticated sender: jacopo@jmondi.org) by relay10.mail.gandi.net (Postfix) with ESMTPSA id 513D624001F; Tue, 22 Oct 2019 13:34:06 +0000 (UTC) From: Jacopo Mondi To: libcamera-devel@lists.libcamera.org Date: Tue, 22 Oct 2019 15:35:51 +0200 Message-Id: <20191022133551.17763-1-jacopo@jmondi.org> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: controls: Remove rogue ';' 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, 22 Oct 2019 13:34:07 -0000 The ';' at the end of an inline method declaration is not required. Signed-off-by: Jacopo Mondi Reviewed-by: Laurent Pinchart --- include/libcamera/controls.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/libcamera/controls.h b/include/libcamera/controls.h index 0d279d508dcc..42e6df7e613d 100644 --- a/include/libcamera/controls.h +++ b/include/libcamera/controls.h @@ -30,8 +30,8 @@ public: ControlValue(int32_t value); ControlValue(int64_t value); - ControlType type() const { return type_; }; - bool isNone() const { return type_ == ControlTypeNone; }; + ControlType type() const { return type_; } + bool isNone() const { return type_ == ControlTypeNone; } template const T &get() const;