Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
help mc initialize smpi options.
[simgrid.git] / src / mc / mc_config.cpp
index bd2963d7c7160eeafd1858580fe679db004f9f49..e6b4fb45f0b5c6d606cc049f069d3b8d1ec62016 100644 (file)
@@ -11,8 +11,6 @@
 
 #include <climits>
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_config, mc, "Configuration of the Model Checker");
-
 #if SIMGRID_HAVE_MC
 namespace simgrid {
 namespace mc {
@@ -79,7 +77,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",