X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/453ce02e0133358ef34d58e920521b6a29fe2283..8a0e2b82a1c0981a84e67f1bb4afb6e16fbf8c3a:/src/surf/StorageImpl.hpp diff --git a/src/surf/StorageImpl.hpp b/src/surf/StorageImpl.hpp index 530c7287e9..204791fd41 100644 --- a/src/surf/StorageImpl.hpp +++ b/src/surf/StorageImpl.hpp @@ -171,11 +171,12 @@ public: std::string id; std::string model; std::string content; - std::map* properties; - std::map* model_properties; + std::unordered_map* properties; + std::unordered_map* model_properties; sg_size_t size; - StorageType(std::string id, std::string model, std::string content, std::map* properties, - std::map* model_properties, sg_size_t size) + StorageType(std::string id, std::string model, std::string content, + std::unordered_map* properties, + std::unordered_map* model_properties, sg_size_t size) : id(id), model(model), content(content), properties(properties), model_properties(model_properties), size(size) { }