]> AND Public Git Repository - simgrid.git/blobdiff - src/xbt/xbt_log_layout_simple.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
It's an internal error if get_impl returns null. Add an assert to be sure.
[simgrid.git] / src / xbt / xbt_log_layout_simple.cpp
index d460805e564973605441f06f7b8a3a9103b3c0cc..2f0d8552a83d7860f92876fcb6f06714fa1d4d64 100644 (file)
@@ -71,8 +71,8 @@ static bool xbt_log_layout_simple_doit(const s_xbt_log_layout_t*, xbt_log_event_
 
 xbt_log_layout_t xbt_log_layout_simple_new(const char*)
 {
-  xbt_log_layout_t res = xbt_new0(s_xbt_log_layout_t, 1);
-  res->do_layout       = &xbt_log_layout_simple_doit;
+  auto* res      = xbt_new0(s_xbt_log_layout_t, 1);
+  res->do_layout = &xbt_log_layout_simple_doit;
 
   return res;
 }