catch const exceptions

This commit is contained in:
moneromooo-monero 2017-12-11 23:04:57 +00:00
parent 45a1c4c088
commit a4240d9ffc
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
4 changed files with 7 additions and 7 deletions

View file

@ -173,7 +173,7 @@ bool t_command_parser_executor::print_block(const std::vector<std::string>& args
uint64_t height = boost::lexical_cast<uint64_t>(arg);
return m_executor.print_block_by_height(height);
}
catch (boost::bad_lexical_cast&)
catch (const boost::bad_lexical_cast&)
{
crypto::hash block_hash;
if (parse_hash256(arg, block_hash))
@ -420,7 +420,7 @@ bool t_command_parser_executor::out_peers(const std::vector<std::string>& args)
limit = std::stoi(args[0]);
}
catch(std::exception& ex) {
catch(const std::exception& ex) {
_erro("stoi exception");
return false;
}
@ -450,7 +450,7 @@ bool t_command_parser_executor::hard_fork_info(const std::vector<std::string>& a
try {
version = std::stoi(args[0]);
}
catch(std::exception& ex) {
catch(const std::exception& ex) {
return false;
}
if (version <= 0 || version > 255)