remove extra const (#2371)

This commit is contained in:
Victor Vazquez 2021-06-01 10:07:18 -07:00 committed by GitHub
parent 141878670f
commit 32944b61a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -771,7 +771,7 @@ try
{
return this->options.at(name);
}
catch (const std::out_of_range const& e)
catch (std::out_of_range const& e)
{
std::ostringstream msg;
msg << "no option named \"" << name << "\" in parser_results." << e.what();