Skip to content
Snippets Groups Projects
Commit 19c53bbb authored by Tom Fischer's avatar Tom Fischer
Browse files

[ML] Improve constness of variables in class Properties.

parent 57db0661
No related branches found
No related tags found
No related merge requests found
...@@ -95,7 +95,7 @@ public: ...@@ -95,7 +95,7 @@ public:
std::vector<std::size_t> const& item2group_mapping, std::vector<std::size_t> const& item2group_mapping,
MeshItemType mesh_item_type) MeshItemType mesh_item_type)
{ {
PropertyKeyType property_key(name, mesh_item_type); PropertyKeyType const property_key(name, mesh_item_type);
std::map<PropertyKeyType, boost::any>::const_iterator it( std::map<PropertyKeyType, boost::any>::const_iterator it(
_properties.find(property_key) _properties.find(property_key)
); );
...@@ -124,7 +124,7 @@ public: ...@@ -124,7 +124,7 @@ public:
getProperty(std::string const& name, getProperty(std::string const& name,
MeshItemType mesh_item_type) MeshItemType mesh_item_type)
{ {
PropertyKeyType property_key(name, mesh_item_type); PropertyKeyType const property_key(name, mesh_item_type);
std::map<PropertyKeyType, boost::any>::const_iterator it( std::map<PropertyKeyType, boost::any>::const_iterator it(
_properties.find(property_key) _properties.find(property_key)
); );
...@@ -145,7 +145,7 @@ public: ...@@ -145,7 +145,7 @@ public:
void removeProperty(std::string const& name, void removeProperty(std::string const& name,
MeshItemType mesh_item_type) MeshItemType mesh_item_type)
{ {
PropertyKeyType property_key(name, mesh_item_type); PropertyKeyType const property_key(name, mesh_item_type);
std::map<PropertyKeyType, boost::any>::const_iterator it( std::map<PropertyKeyType, boost::any>::const_iterator it(
_properties.find(property_key) _properties.find(property_key)
); );
...@@ -164,7 +164,7 @@ public: ...@@ -164,7 +164,7 @@ public:
/// @param mesh_item_type to which item type the property is assigned to /// @param mesh_item_type to which item type the property is assigned to
bool hasProperty(std::string const& name, MeshItemType mesh_item_type) bool hasProperty(std::string const& name, MeshItemType mesh_item_type)
{ {
PropertyKeyType property_key(name, mesh_item_type); PropertyKeyType const property_key(name, mesh_item_type);
std::map<PropertyKeyType, boost::any>::const_iterator it( std::map<PropertyKeyType, boost::any>::const_iterator it(
_properties.find(property_key) _properties.find(property_key)
); );
...@@ -181,8 +181,8 @@ private: ...@@ -181,8 +181,8 @@ private:
: name(n), mesh_item_type(t) : name(n), mesh_item_type(t)
{} {}
std::string name; std::string const name;
MeshItemType mesh_item_type; MeshItemType const mesh_item_type;
bool operator<(PropertyKeyType const& other) const bool operator<(PropertyKeyType const& other) const
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment