summaryrefslogtreecommitdiff
path: root/redfish-core/include/redfish_aggregator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'redfish-core/include/redfish_aggregator.hpp')
-rw-r--r--redfish-core/include/redfish_aggregator.hpp14
1 files changed, 6 insertions, 8 deletions
diff --git a/redfish-core/include/redfish_aggregator.hpp b/redfish-core/include/redfish_aggregator.hpp
index f255b9f0a6..bc0300a1a9 100644
--- a/redfish-core/include/redfish_aggregator.hpp
+++ b/redfish-core/include/redfish_aggregator.hpp
@@ -202,7 +202,7 @@ static inline void addPrefixToStringItem(std::string& strValue,
const boost::urls::segments_view urlSegments = thisUrl.segments();
bool addedPrefix = false;
boost::urls::url url("/");
- boost::urls::segments_view::iterator it = urlSegments.begin();
+ boost::urls::segments_view::const_iterator it = urlSegments.begin();
const boost::urls::segments_view::const_iterator end = urlSegments.end();
// Skip past the leading "/redfish/v1"
@@ -671,9 +671,8 @@ class RedfishAggregator
const boost::urls::segments_view urlSegments = thisReq.url().segments();
boost::urls::url currentUrl("/");
- boost::urls::segments_view::iterator it = urlSegments.begin();
- const boost::urls::segments_view::const_iterator end =
- urlSegments.end();
+ boost::urls::segments_view::const_iterator it = urlSegments.begin();
+ boost::urls::segments_view::const_iterator end = urlSegments.end();
// Skip past the leading "/redfish/v1"
it++;
@@ -1188,7 +1187,7 @@ class RedfishAggregator
{
using crow::utility::OrMorePaths;
using crow::utility::readUrlSegments;
- const boost::urls::url_view url = thisReq.url();
+ boost::urls::url_view url = thisReq.url();
// We don't need to aggregate JsonSchemas due to potential issues such
// as version mismatches between aggregator and satellite BMCs. For
@@ -1214,9 +1213,8 @@ class RedfishAggregator
// /redfish/v1/UpdateService/FirmwareInventory
const boost::urls::segments_view urlSegments = url.segments();
boost::urls::url currentUrl("/");
- boost::urls::segments_view::iterator it = urlSegments.begin();
- const boost::urls::segments_view::const_iterator end =
- urlSegments.end();
+ boost::urls::segments_view::const_iterator it = urlSegments.begin();
+ boost::urls::segments_view::const_iterator end = urlSegments.end();
// Skip past the leading "/redfish/v1"
it++;