summaryrefslogtreecommitdiff
path: root/redfish-core
diff options
context:
space:
mode:
authorNan Zhou <nanzhoumails@gmail.com>2022-06-21 20:47:45 +0300
committerNan Zhou <nanzhoumails@gmail.com>2022-06-21 20:48:19 +0300
commit9fa6d1473a8c3f104f47061ad36664e9934c5286 (patch)
tree326eae7fe7ededcd60737f81260ebf64192da96c /redfish-core
parent4dd73a1cfa22ebf9b2ee2fd2aff6767eeb88e1c1 (diff)
downloadbmcweb-9fa6d1473a8c3f104f47061ad36664e9934c5286.tar.xz
clang: fix extra semicolon
Failed with -Wextra-semi. Tested: no -Wextra-semi when build with clang++ Signed-off-by: Nan Zhou <nanzhoumails@gmail.com> Change-Id: Ib0c0b3a2b0fcfe0e415987baa18f810e4b19b89f
Diffstat (limited to 'redfish-core')
-rw-r--r--redfish-core/include/event_service_manager.hpp2
-rw-r--r--redfish-core/include/redfish_aggregator.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/redfish-core/include/event_service_manager.hpp b/redfish-core/include/event_service_manager.hpp
index 8c21fac5ab..56c7dcf207 100644
--- a/redfish-core/include/event_service_manager.hpp
+++ b/redfish-core/include/event_service_manager.hpp
@@ -576,7 +576,7 @@ class Subscription : public persistent_data::UserSubscription
// Return 0 if the response code is valid
return boost::system::errc::make_error_code(
boost::system::errc::success);
- };
+ }
};
class EventServiceManager
diff --git a/redfish-core/include/redfish_aggregator.hpp b/redfish-core/include/redfish_aggregator.hpp
index 01e5aba45e..33f6fb4b53 100644
--- a/redfish-core/include/redfish_aggregator.hpp
+++ b/redfish-core/include/redfish_aggregator.hpp
@@ -36,7 +36,7 @@ class RedfishAggregator
// Return 0 if the response code is valid
return boost::system::errc::make_error_code(
boost::system::errc::success);
- };
+ }
// Dummy callback used by the Constructor so that it can report the number
// of satellite configs when the class is first created