Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Comment name for unused parameters.
[simgrid.git] / examples / s4u / actor-lifetime / s4u-actor-lifetime.cpp
index 41a62d5..0c47c27 100644 (file)
@@ -8,7 +8,7 @@
 XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Messages specific for this s4u example");
 
 /* Executed on process termination, to display a message helping to understand the output */
-static int my_onexit(void* ignored1, void* ignored2)
+static int my_onexit(void*, void*)
 {
   XBT_INFO("Exiting now (done sleeping or got killed).");
   return 0;
@@ -18,7 +18,7 @@ static int my_onexit(void* ignored1, void* ignored2)
 class sleeper {
 
 public:
-  explicit sleeper(std::vector<std::string> args)
+  explicit sleeper(std::vector<std::string> /*args*/)
   {
     XBT_INFO("Hello! I go to sleep.");
     simcall_process_on_exit(SIMIX_process_self(), my_onexit, NULL);