summaryrefslogtreecommitdiff
path: root/redfish-core/include/resource_messages.hpp
diff options
context:
space:
mode:
authorEd Tanous <ed@tanous.net>2020-09-29 00:29:23 +0300
committerEd Tanous <ed@tanous.net>2020-09-29 21:38:42 +0300
commit2c70f8004afdc27bd42968b8bf7480f2e534974c (patch)
tree569f4cb0110aae2ccd0e4d197efe4c3a36c5b7b6 /redfish-core/include/resource_messages.hpp
parent3e4c7797033926a0502cdd4491421c8b16684aef (diff)
downloadbmcweb-2c70f8004afdc27bd42968b8bf7480f2e534974c.tar.xz
Fix naming conventions
Lots of code has been checked in that doesn't match the naming conventions. Lets fix that. Tested: Code compiles. Variable/function renames only. Signed-off-by: Ed Tanous <ed@tanous.net> Change-Id: I6bd107811d0b724f1fad990016113cdf035b604b
Diffstat (limited to 'redfish-core/include/resource_messages.hpp')
-rw-r--r--redfish-core/include/resource_messages.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/redfish-core/include/resource_messages.hpp b/redfish-core/include/resource_messages.hpp
index 9826566e27..17157fe250 100644
--- a/redfish-core/include/resource_messages.hpp
+++ b/redfish-core/include/resource_messages.hpp
@@ -5,7 +5,7 @@ namespace redfish
namespace messages
{
-inline nlohmann::json ResourceChanged(void)
+inline nlohmann::json resourceChanged(void)
{
return nlohmann::json{
{"EventType", "ResourceChanged"},
@@ -16,7 +16,7 @@ inline nlohmann::json ResourceChanged(void)
{"MessageSeverity", "OK"}};
}
-inline nlohmann::json ResourceCreated(void)
+inline nlohmann::json resourceCreated(void)
{
return nlohmann::json{
{"EventType", "ResourceAdded"},
@@ -27,7 +27,7 @@ inline nlohmann::json ResourceCreated(void)
{"MessageSeverity", "OK"}};
}
-inline nlohmann::json ResourceRemoved(void)
+inline nlohmann::json resourceRemoved(void)
{
return nlohmann::json{
{"EventType", "ResourceRemoved"},