summaryrefslogtreecommitdiff
path: root/include/libcamera
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 /include/libcamera
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 'include/libcamera')
-rw-r--r--include/libcamera/bound_method.h2
-rw-r--r--include/libcamera/object.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/libcamera/bound_method.h b/include/libcamera/bound_method.h
index bdeb5469..b841a2ae 100644
--- a/include/libcamera/bound_method.h
+++ b/include/libcamera/bound_method.h
@@ -142,6 +142,6 @@ private:
void (*func_)(Args...);
};
-}; /* namespace libcamera */
+} /* namespace libcamera */
#endif /* __LIBCAMERA_BOUND_METHOD_H__ */
diff --git a/include/libcamera/object.h b/include/libcamera/object.h
index 91b56596..86e0f726 100644
--- a/include/libcamera/object.h
+++ b/include/libcamera/object.h
@@ -67,6 +67,6 @@ private:
unsigned int pendingMessages_;
};
-}; /* namespace libcamera */
+} /* namespace libcamera */
#endif /* __LIBCAMERA_OBJECT_H__ */