Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[S4U] NULL -> nullptr substitution
[simgrid.git] / src / s4u / s4u_engine.cpp
index 1f6a490..73b3b7c 100644 (file)
@@ -82,12 +82,12 @@ static s4u::As *asByNameRecursive(s4u::As *current, const char *name)
   if(!strcmp(current->name(), name))
     return current;
 
-  xbt_dict_cursor_t cursor = NULL;
+  xbt_dict_cursor_t cursor = nullptr;
   char *key;
   AS_t elem;
   xbt_dict_foreach(current->children(), cursor, key, elem) {
     simgrid::s4u::As *tmp = asByNameRecursive(elem, name);
-    if (tmp != NULL )
+    if (tmp != nullptr )
         return tmp;
   }
   return nullptr;