From 2868dbfdbb250a018561aec1de7b511e00673e9a Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Tue, 27 Aug 2019 09:22:19 +0200 Subject: [PATCH] Don't name the unused parameter of this callback --- src/mc/mc_config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mc/mc_config.cpp b/src/mc/mc_config.cpp index bd2963d7c7..2ba61a4d88 100644 --- a/src/mc/mc_config.cpp +++ b/src/mc/mc_config.cpp @@ -79,7 +79,7 @@ simgrid::config::Flag _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 _sg_mc_reduce{ "model-check/reduction", "Specify the kind of exploration reduction (either none or DPOR)", "dpor", -- 2.20.1