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");
|
||||
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;
|
||||
bool r = command_line::handle_error_helper(desc_options, [&]()
|
||||
|
|
Loading…
Reference in New Issue