X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96cedde3cdbc0b8ffc3f096a1b65d021b0226f99..8c753c341f0c7f6d5ea38c4cb7bf7da6f0ef0a1b:/src/surf/PropertyHolder.cpp diff --git a/src/surf/PropertyHolder.cpp b/src/surf/PropertyHolder.cpp index 53232e05ed..962f86e03d 100644 --- a/src/surf/PropertyHolder.cpp +++ b/src/surf/PropertyHolder.cpp @@ -13,7 +13,7 @@ PropertyHolder::~PropertyHolder() { } /** @brief Return the property associated to the provided key (or nullptr if not existing) */ -const char* PropertyHolder::get_property(std::string key) +const char* PropertyHolder::get_property(const std::string& key) { if (properties_ == nullptr) return nullptr; @@ -22,11 +22,11 @@ const char* PropertyHolder::get_property(std::string key) } /** @brief Change the value of a given key in the property set */ -void PropertyHolder::set_property(std::string key, std::string value) +void PropertyHolder::set_property(const std::string& key, std::string value) { if (not properties_) properties_ = new std::unordered_map; - (*properties_)[key] = value; + (*properties_)[key] = std::move(value); } /** @brief Return the whole set of properties. Don't mess with it, dude! */