Make error codes take by reference
Similar to may other refactors we've done, capture
boost::system::error_code instances by const reference.
Tested: Trivial change. Code compiles.
Change-Id: I63b6c1e3e793621cf55aca03259c2e9ffddab853
Signed-off-by: Ed Tanous <edtanous@google.com>
diff --git a/redfish-core/lib/account_service.hpp b/redfish-core/lib/account_service.hpp
index 9f3c96e..56cd492 100644
--- a/redfish-core/lib/account_service.hpp
+++ b/redfish-core/lib/account_service.hpp
@@ -2244,7 +2244,7 @@
[asyncResp, username, password(std::move(password)),
roleId(std::move(roleId)), enabled, newUser{std::string(*newUserName)},
locked, userSelf, accountTypes(std::move(accountTypes))](
- const boost::system::error_code ec, sdbusplus::message_t& m) {
+ const boost::system::error_code& ec, sdbusplus::message_t& m) {
if (ec)
{
userErrorMessageHandler(m.get_error(), asyncResp, newUser,
diff --git a/redfish-core/lib/event_service.hpp b/redfish-core/lib/event_service.hpp
index aef4d47..9e2d0fe 100644
--- a/redfish-core/lib/event_service.hpp
+++ b/redfish-core/lib/event_service.hpp
@@ -191,7 +191,7 @@
}
inline void doSubscriptionCollection(
- const boost::system::error_code ec,
+ const boost::system::error_code& ec,
const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
const dbus::utility::ManagedObjectType& resp)
{
@@ -255,7 +255,7 @@
memberArray.emplace_back(std::move(member));
}
crow::connections::systemBus->async_method_call(
- [asyncResp](const boost::system::error_code ec,
+ [asyncResp](const boost::system::error_code& ec,
const dbus::utility::ManagedObjectType& resp) {
doSubscriptionCollection(ec, asyncResp, resp);
},