use const references in catch blocks
This commit is contained in:
@@ -168,7 +168,7 @@ namespace command_line
|
||||
{
|
||||
return parser();
|
||||
}
|
||||
catch (std::exception& e)
|
||||
catch (const std::exception& e)
|
||||
{
|
||||
std::cerr << "Failed to parse arguments: " << e.what() << std::endl;
|
||||
std::cerr << desc << std::endl;
|
||||
|
||||
Reference in New Issue
Block a user