Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Unused function parameters.
[simgrid.git] / teshsuite / s4u / actor-autorestart / actor-autorestart.cpp
index 5f59991..a14e77e 100644 (file)
@@ -24,9 +24,9 @@ static void autostart()
   XBT_INFO("starting a dummy process on %s ", host->get_cname());
 
   simgrid::s4u::ActorPtr dummy_actor = simgrid::s4u::Actor::create("Dummy", host, dummy);
-  dummy_actor->on_exit([](bool failed) { XBT_INFO("On_exit callback set before autorestart"); });
+  dummy_actor->on_exit([](bool) { XBT_INFO("On_exit callback set before autorestart"); });
   dummy_actor->set_auto_restart(true);
-  dummy_actor->on_exit([](bool failed) { XBT_INFO("On_exit callback set after autorestart"); });
+  dummy_actor->on_exit([](bool) { XBT_INFO("On_exit callback set after autorestart"); });
 
   simgrid::s4u::this_actor::sleep_for(50);