performance_tests: remove add_arg call stray extra param

Coverity 182572
pull/95/head
moneromooo-monero 6 years ago
parent fa6b45665d
commit c6ea3df0ae
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -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…
Cancel
Save