libcamera: Remove unneeded semicolons

Comply with the coding style by removing lots of unneeded semicolons.
Fix a few other coding style violations on the lines touched by those
fixes.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
Laurent Pinchart
2019-11-08 20:37:47 +02:00
parent 53eab99680
commit d312d0ba10
18 changed files with 23 additions and 21 deletions
+1 -1
View File
@@ -45,4 +45,4 @@ void CameraTest::cleanup()
cm_->stop();
delete cm_;
};
}
+3 -1
View File
@@ -21,7 +21,9 @@ class V4L2SubdeviceTest : public Test
{
public:
V4L2SubdeviceTest()
: scaler_(nullptr){};
: scaler_(nullptr)
{
}
protected:
int init() override;
@@ -99,4 +99,4 @@ void V4L2VideoDeviceTest::cleanup()
delete debayer_;
delete sensor_;
delete capture_;
};
}