Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cosmetics
[simgrid.git] / src / xbt / log.cpp
index d546f82..65c5dae 100644 (file)
@@ -113,8 +113,8 @@ static void log_cat_exit(xbt_log_category_t cat)
     cat->layout = nullptr;
   }
 
-  for (auto const* child = cat->firstChild; child != nullptr; child = child->nextSibling)
-    log_cat_exit(const_cast<xbt_log_category_t>(child));
+  for (auto* child = cat->firstChild; child != nullptr; child = child->nextSibling)
+    log_cat_exit(child);
   cat->firstChild = nullptr;
 }