X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c312320c2e43da49b536c51a9d19b6ad6d66e489..35bf365de6be434aeeafa8b3d5f5c9a1e3082ce3:/src/instr/instr_platform.cpp diff --git a/src/instr/instr_platform.cpp b/src/instr/instr_platform.cpp index 94b95e30a0..f7cbcc9dca 100644 --- a/src/instr/instr_platform.cpp +++ b/src/instr/instr_platform.cpp @@ -485,8 +485,7 @@ void define_callbacks() if (TRACE_actor_is_enabled()) { s4u::Actor::on_creation_cb(on_actor_creation); s4u::Actor::on_destruction_cb([](s4u::Actor const& actor) { - auto container = Container::by_name_or_null(instr_pid(actor)); - if (container != nullptr) + if (auto* container = Container::by_name_or_null(instr_pid(actor))) container->remove_from_parent(); }); s4u::Actor::on_suspend_cb([](s4u::Actor const& actor) { @@ -532,10 +531,10 @@ void define_callbacks() Container::by_name(c.get_destination()->get_name())->get_state("HOST_STATE")->push_event("start"); } }); - s4u::Comm::on_send_cb([](s4u::Comm const& c) { + s4u::Comm::on_send_cb([](s4u::Comm const&) { Container::by_name(instr_pid(*s4u::Actor::self()))->get_state("ACTOR_STATE")->push_event("send"); }); - s4u::Comm::on_recv_cb([](s4u::Comm const& c) { + s4u::Comm::on_recv_cb([](s4u::Comm const&) { Container::by_name(instr_pid(*s4u::Actor::self()))->get_state("ACTOR_STATE")->push_event("receive"); }); s4u::Actor::on_host_change_cb(on_actor_host_change);