Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Don't name the unused parameter of this callback
[simgrid.git] / src / mc / mc_config.cpp
index bd2963d..2ba61a4 100644 (file)
@@ -79,7 +79,7 @@ simgrid::config::Flag<std::string> _sg_mc_buffering{
     "infty",
     {{"zero", "No system buffering: MPI_Send is blocking"},
      {"infty", "Infinite system buffering: MPI_Send returns immediately"}},
-    [](const std::string& value) { _mc_cfg_cb_check("buffering mode"); }};
+    [](const std::string&) { _mc_cfg_cb_check("buffering mode"); }};
 
 static simgrid::config::Flag<std::string> _sg_mc_reduce{
     "model-check/reduction", "Specify the kind of exploration reduction (either none or DPOR)", "dpor",