summaryrefslogtreecommitdiff
path: root/src/cam
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-11-04 18:50:45 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-11-08 20:37:47 +0200
commitd312d0ba10f3740d45b50ef8bcfc48e751e694fc (patch)
treef9d45825774f25cacb1d2a84eca74631bdb8e837 /src/cam
parent53eab996809e826bc914e4c34c78fe74d86f8dc4 (diff)
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>
Diffstat (limited to 'src/cam')
-rw-r--r--src/cam/event_loop.h2
-rw-r--r--src/cam/options.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cam/event_loop.h b/src/cam/event_loop.h
index aaca5838..581c7cba 100644
--- a/src/cam/event_loop.h
+++ b/src/cam/event_loop.h
@@ -13,7 +13,7 @@
namespace libcamera {
class EventDispatcher;
-};
+}
class EventLoop
{
diff --git a/src/cam/options.cpp b/src/cam/options.cpp
index 1f0631ec..7e2dfa63 100644
--- a/src/cam/options.cpp
+++ b/src/cam/options.cpp
@@ -490,7 +490,7 @@ void OptionsParser::usage()
else
argument += " ";
argument += std::string("--") + option.name;
- };
+ }
if (option.argument != ArgumentNone) {
if (option.argument == ArgumentOptional)