Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ns3: greatly simplify how hosts are added to clusters
[simgrid.git] / src / surf / sg_platf.cpp
index cdb4e0ff91da977dd53de27f23695c2482907707..e1218f8afdc42fd215ed2c0b1e5bd436740f2046 100644 (file)
@@ -673,7 +673,7 @@ void sg_platf_new_Zone_seal()
 /** @brief Add a link connecting a host to the rest of its AS (which must be cluster or vivaldi) */
 void sg_platf_new_hostlink(const simgrid::kernel::routing::HostLinkCreationArgs* hostlink)
 {
-  simgrid::kernel::routing::NetPoint* netpoint = simgrid::s4u::Host::by_name(hostlink->id)->get_netpoint();
+  const simgrid::kernel::routing::NetPoint* netpoint = simgrid::s4u::Host::by_name(hostlink->id)->get_netpoint();
   xbt_assert(netpoint, "Host '%s' not found!", hostlink->id.c_str());
   xbt_assert(dynamic_cast<simgrid::kernel::routing::ClusterZone*>(current_routing),
              "Only hosts from Cluster and Vivaldi ASes can get a host_link.");