mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Silence stupid fallthru warning in gcc 7
This commit is contained in:
parent
4466b6d1b0
commit
0c6c3eb3f2
@ -41,19 +41,24 @@ class portable_binary_oarchive_exception :
|
|||||||
public boost::archive::archive_exception
|
public boost::archive::archive_exception
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef enum {
|
enum exception_code {
|
||||||
invalid_flags
|
invalid_flags
|
||||||
} exception_code;
|
} m_exception_code ;
|
||||||
portable_binary_oarchive_exception(exception_code c = invalid_flags )
|
portable_binary_oarchive_exception(exception_code c = invalid_flags ) :
|
||||||
|
boost::archive::archive_exception(boost::archive::archive_exception::other_exception),
|
||||||
|
m_exception_code(c)
|
||||||
{}
|
{}
|
||||||
virtual const char *what( ) const throw( )
|
virtual const char *what( ) const throw( )
|
||||||
{
|
{
|
||||||
const char *msg = "programmer error";
|
const char *msg = "programmer error";
|
||||||
switch(code){
|
switch(m_exception_code){
|
||||||
case invalid_flags:
|
case invalid_flags:
|
||||||
msg = "cannot be both big and little endian";
|
msg = "cannot be both big and little endian";
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
boost::archive::archive_exception::what();
|
msg = boost::archive::archive_exception::what();
|
||||||
|
assert(false);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
return msg;
|
return msg;
|
||||||
}
|
}
|
||||||
|
@ -2410,6 +2410,7 @@ bool simple_wallet::transfer_main(int transfer_type, const std::vector<std::stri
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
LOG_ERROR("Unknown transfer method, using original");
|
LOG_ERROR("Unknown transfer method, using original");
|
||||||
|
/* FALLTHRU */
|
||||||
case TransferOriginal:
|
case TransferOriginal:
|
||||||
ptx_vector = m_wallet->create_transactions(dsts, fake_outs_count, 0 /* unlock_time */, priority, extra, m_trusted_daemon);
|
ptx_vector = m_wallet->create_transactions(dsts, fake_outs_count, 0 /* unlock_time */, priority, extra, m_trusted_daemon);
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user