summaryrefslogtreecommitdiff
path: root/include/libcamera/controls.h
diff options
context:
space:
mode:
authorJacopo Mondi <jacopo@jmondi.org>2019-10-21 11:26:27 +0200
committerJacopo Mondi <jacopo@jmondi.org>2019-10-23 09:59:24 +0200
commit408c98ea456a63e3820fe264039a0ff240984372 (patch)
tree25b07e966f60a37283f6335c2aa88614b1f9f86f /include/libcamera/controls.h
parent3774f23f8eaeb5a303539081938533381862dfe1 (diff)
libcamera: controls: Remove rogue ';'
The ';' at the end of an inline method declaration is not required. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'include/libcamera/controls.h')
-rw-r--r--include/libcamera/controls.h4
1 files 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<typename T>
const T &get() const;