From 19c53bbbebc76fe4e84da2ad56a529f74a3670a0 Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Wed, 17 Dec 2014 09:24:00 +0100 Subject: [PATCH] [ML] Improve constness of variables in class Properties. --- MeshLib/Properties.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/MeshLib/Properties.h b/MeshLib/Properties.h index b2ffbb3b00f..0023add1fe6 100644 --- a/MeshLib/Properties.h +++ b/MeshLib/Properties.h @@ -95,7 +95,7 @@ public: std::vector<std::size_t> const& item2group_mapping, 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( _properties.find(property_key) ); @@ -124,7 +124,7 @@ public: getProperty(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( _properties.find(property_key) ); @@ -145,7 +145,7 @@ public: void removeProperty(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( _properties.find(property_key) ); @@ -164,7 +164,7 @@ public: /// @param mesh_item_type to which item type the property is assigned to 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( _properties.find(property_key) ); @@ -181,8 +181,8 @@ private: : name(n), mesh_item_type(t) {} - std::string name; - MeshItemType mesh_item_type; + std::string const name; + MeshItemType const mesh_item_type; bool operator<(PropertyKeyType const& other) const { -- GitLab