mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
performance_tests: remove add_arg call stray extra param
Coverity 182572
This commit is contained in:
parent
fa6b45665d
commit
c6ea3df0ae
@ -84,7 +84,7 @@ int main(int argc, char** argv)
|
|||||||
|
|
||||||
po::options_description desc_options("Command line options");
|
po::options_description desc_options("Command line options");
|
||||||
const command_line::arg_descriptor<std::string> arg_filter = { "filter", "Regular expression filter for which tests to run" };
|
const command_line::arg_descriptor<std::string> arg_filter = { "filter", "Regular expression filter for which tests to run" };
|
||||||
command_line::add_arg(desc_options, arg_filter, "");
|
command_line::add_arg(desc_options, arg_filter);
|
||||||
|
|
||||||
po::variables_map vm;
|
po::variables_map vm;
|
||||||
bool r = command_line::handle_error_helper(desc_options, [&]()
|
bool r = command_line::handle_error_helper(desc_options, [&]()
|
||||||
|
Loading…
Reference in New Issue
Block a user