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
diff --git a/redfish-core/include/node.hpp b/redfish-core/include/node.hpp
index 797160d..9863794 100644
--- a/redfish-core/include/node.hpp
+++ b/redfish-core/include/node.hpp
@@ -91,9 +91,9 @@
doPut(res, req, paramVec);
});
- crow::DynamicRule& delete_ = app.routeDynamic(entityUrl.c_str());
- deleteRule = &delete_;
- delete_.methods(boost::beast::http::verb::delete_)(
+ crow::DynamicRule& deleteR = app.routeDynamic(entityUrl.c_str());
+ deleteRule = &deleteR;
+ deleteR.methods(boost::beast::http::verb::delete_)(
[this](const crow::Request& req, crow::Response& res,
Params... params) {
std::vector<std::string> paramVec = {params...};