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>
This commit is contained in:
Jacopo Mondi 2019-10-21 11:26:27 +02:00
parent 3774f23f8e
commit 408c98ea45

View file

@ -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;