Skip to content

Commit

Permalink
unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianPommerening committed Sep 27, 2024
1 parent 996d3cd commit 8551cf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search/command_line.cc
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ static shared_ptr<SearchAlgorithm> parse_cmd_line_aux(const vector<string> &args
parser::DecoratedASTNodePtr decorated = parsed->decorate();
plugins::Any constructed = decorated->construct();
search_algorithm = plugins::any_cast<SearchPtr>(constructed);
} catch (const plugins::BadAnyCast &e) {
} catch (const plugins::BadAnyCast &) {
input_error("Could not interpret the argument of --search as a search algorithm.");
} catch (const utils::ContextError &e) {
input_error(e.get_message());
Expand Down

0 comments on commit 8551cf9

Please sign in to comment.