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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user