Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Deobfuscate expression.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sun, 20 Aug 2017 17:07:25 +0000 (19:07 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sun, 20 Aug 2017 17:07:25 +0000 (19:07 +0200)
src/simdag/sd_task.cpp

index 0dee8e1..732cf70 100644 (file)
@@ -380,7 +380,7 @@ int SD_task_get_workstation_count(SD_task_t task)
  */
 sg_host_t *SD_task_get_workstation_list(SD_task_t task)
 {
-  return &(*(task->allocation))[0];
+  return task->allocation->data();
 }
 
 /**