Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill useless code
[simgrid.git] / src / msg / msg_environment.cpp
index 0dee03e..fc067f7 100644 (file)
@@ -43,8 +43,7 @@ void MSG_post_create_environment() {
 
   /* Initialize MSG storages */
   xbt_lib_foreach(storage_lib, cursor, name, data) {
-    if(data[SIMIX_STORAGE_LEVEL])
-      __MSG_storage_create(xbt_dict_cursor_get_elm(cursor));
+    __MSG_storage_create(xbt_dict_cursor_get_elm(cursor));
   }
 }
 
@@ -82,6 +81,7 @@ void MSG_zone_set_property_value(msg_netzone_t netzone, const char* name, char*
 
 void MSG_zone_get_hosts(msg_netzone_t netzone, xbt_dynar_t whereto)
 {
+  /* converts vector to dynar */
   std::vector<simgrid::s4u::Host*> hosts;
   netzone->hosts(&hosts);
   for (auto host : hosts)