From d312d0ba10f3740d45b50ef8bcfc48e751e694fc Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Mon, 4 Nov 2019 18:50:45 +0200 Subject: 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 Reviewed-by: Kieran Bingham --- include/ipa/ipa_module_info.h | 4 ++-- include/ipa/ipa_vimc.h | 2 +- include/libcamera/bound_method.h | 2 +- include/libcamera/object.h | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) (limited to 'include') diff --git a/include/ipa/ipa_module_info.h b/include/ipa/ipa_module_info.h index d9e33c1d..7ecd1495 100644 --- a/include/ipa/ipa_module_info.h +++ b/include/ipa/ipa_module_info.h @@ -23,8 +23,8 @@ struct IPAModuleInfo { extern "C" { extern const struct IPAModuleInfo ipaModuleInfo; -}; +} -}; /* namespace libcamera */ +} /* namespace libcamera */ #endif /* __LIBCAMERA_IPA_MODULE_INFO_H__ */ diff --git a/include/ipa/ipa_vimc.h b/include/ipa/ipa_vimc.h index 05b561d8..9add122c 100644 --- a/include/ipa/ipa_vimc.h +++ b/include/ipa/ipa_vimc.h @@ -17,6 +17,6 @@ enum IPAOperationCode { IPAOperationInit, }; -}; /* namespace libcamera */ +} /* namespace libcamera */ #endif /* __LIBCAMERA_IPA_VIMC_H__ */ 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__ */ -- cgit v1.2.1