X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9e3b2f1d55a07271c05db2ed5b3fec27561097f9..ebc355d0c96552d0bc2aa301d90723490337bca3:/src/surf/PropertyHolder.cpp diff --git a/src/surf/PropertyHolder.cpp b/src/surf/PropertyHolder.cpp index 962f86e03d..39be42b685 100644 --- a/src/surf/PropertyHolder.cpp +++ b/src/surf/PropertyHolder.cpp @@ -22,11 +22,11 @@ const char* PropertyHolder::get_property(const std::string& key) } /** @brief Change the value of a given key in the property set */ -void PropertyHolder::set_property(const std::string& key, std::string value) +void PropertyHolder::set_property(const std::string& key, const std::string& value) { if (not properties_) properties_ = new std::unordered_map; - (*properties_)[key] = std::move(value); + (*properties_)[key] = value; } /** @brief Return the whole set of properties. Don't mess with it, dude! */