mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-24 17:15:07 +03:00
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:
parent
3774f23f8e
commit
408c98ea45
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue