X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b98e2e68753ffbe791c52a3f698fb1a3e726daec..d7bad17b9b1c8c9475fcf86bfeebc4d5d7d35fb4:/src/xbt/xbt_log_layout_simple.cpp diff --git a/src/xbt/xbt_log_layout_simple.cpp b/src/xbt/xbt_log_layout_simple.cpp index d460805e56..a689123749 100644 --- a/src/xbt/xbt_log_layout_simple.cpp +++ b/src/xbt/xbt_log_layout_simple.cpp @@ -1,6 +1,6 @@ /* layout_simple - a dumb log layout */ -/* Copyright (c) 2007-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -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; }