X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8c4d4c169bacafe232f5af91236be37fcf45de35..bde09a7b53c62986d6f22b10de50dec039b4f96a:/src/surf/storage_n11.cpp diff --git a/src/surf/storage_n11.cpp b/src/surf/storage_n11.cpp index 90a77b4046..5293953422 100644 --- a/src/surf/storage_n11.cpp +++ b/src/surf/storage_n11.cpp @@ -21,7 +21,7 @@ extern std::map storage_ty void check_disk_attachment() { for (auto const& s : simgrid::s4u::Engine::get_instance()->get_all_storages()) { - simgrid::kernel::routing::NetPoint* host_elm = + const simgrid::kernel::routing::NetPoint* host_elm = simgrid::s4u::Engine::get_instance()->netpoint_by_name_or_null(s->get_impl()->get_host()); if (not host_elm) surf_parse_error(std::string("Unable to attach storage ") + s->get_cname() + ": host " + @@ -52,7 +52,7 @@ StorageN11Model::StorageN11Model() StorageImpl* StorageN11Model::createStorage(const std::string& id, const std::string& type_id, const std::string& content_name, const std::string& attach) { - StorageType* storage_type = storage_types.at(type_id); + const StorageType* storage_type = storage_types.at(type_id); double Bread = surf_parse_get_bandwidth(storage_type->model_properties->at("Bread").c_str(), "property Bread, storage", type_id);