Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
convert getCname to get_cname
[simgrid.git] / src / instr / instr_resource_utilization.cpp
index 19468d2..c559549 100644 (file)
@@ -22,7 +22,7 @@ static void instr_event(double now, double delta, simgrid::instr::VariableType*
    */
 
   // create a key considering the resource and variable
-  std::string key = resource->getName() + variable->getName();
+  std::string key = resource->get_name() + variable->get_name();
 
   // check if key exists: if it doesn't, set the variable to zero and mark this in the global map.
   if (platform_variables.find(key) == platform_variables.end()) {