Enable 3 member function checks
The only changes were to make some functions static, which is
essentially no-op.
Changes were done by the robot.
Tested: Unit tests pass, changes no-op
Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: Id84ca2bee6f237877ba2900b2cbe4679b38a91dc
diff --git a/redfish-core/lib/task.hpp b/redfish-core/lib/task.hpp
index b7795a7..4ebbc14 100644
--- a/redfish-core/lib/task.hpp
+++ b/redfish-core/lib/task.hpp
@@ -188,7 +188,7 @@
});
}
- void sendTaskEvent(const std::string_view state, size_t index)
+ static void sendTaskEvent(const std::string_view state, size_t index)
{
std::string origin =
"/redfish/v1/TaskService/Tasks/" + std::to_string(index);