Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Constify get_properties() and and remove simcalls.
[simgrid.git] / src / surf / PropertyHolder.hpp
index a88589b..27ae7a6 100644 (file)
@@ -27,10 +27,7 @@ public:
   const char* get_property(const std::string& key) const;
   void set_property(const std::string& id, const std::string& value);
 
   const char* get_property(const std::string& key) const;
   void set_property(const std::string& id, const std::string& value);
 
-  /* FIXME: This should not be exposed, as users may do bad things with the map they got (it's not a copy).
-   * But some user API expose this call so removing it is not so easy.
-   */
-  std::unordered_map<std::string, std::string>* get_properties();
+  const std::unordered_map<std::string, std::string>* get_properties();
 
 private:
   std::unique_ptr<std::unordered_map<std::string, std::string>> properties_ = nullptr;
 
 private:
   std::unique_ptr<std::unordered_map<std::string, std::string>> properties_ = nullptr;