From 408c98ea456a63e3820fe264039a0ff240984372 Mon Sep 17 00:00:00 2001 From: Jacopo Mondi Date: Mon, 21 Oct 2019 11:26:27 +0200 Subject: libcamera: controls: Remove rogue ';' The ';' at the end of an inline method declaration is not required. Reviewed-by: Laurent Pinchart Signed-off-by: Jacopo Mondi --- 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 0d279d50..42e6df7e 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; -- cgit v1.2.1