Fix some warnings
This commit is contained in:
parent
a0ca5ab29d
commit
84c16aeebb
5 changed files with 8 additions and 10 deletions
|
|
@ -45,7 +45,7 @@ class ripemd160
|
||||||
ripemd160 result();
|
ripemd160 result();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
struct impl;
|
class impl;
|
||||||
fc::fwd<impl,96> my;
|
fc::fwd<impl,96> my;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -446,11 +446,11 @@ namespace fc
|
||||||
catch( fc::exception& er ) { \
|
catch( fc::exception& er ) { \
|
||||||
FC_RETHROW_EXCEPTION( er, LOG_LEVEL, FORMAT, __VA_ARGS__ ); \
|
FC_RETHROW_EXCEPTION( er, LOG_LEVEL, FORMAT, __VA_ARGS__ ); \
|
||||||
} catch( const std::exception& e ) { \
|
} catch( const std::exception& e ) { \
|
||||||
fc::exception fce( \
|
throw fc::exception( \
|
||||||
FC_LOG_MESSAGE( LOG_LEVEL, "${what}: " FORMAT,__VA_ARGS__("what",e.what())), \
|
FC_LOG_MESSAGE( LOG_LEVEL, "${what}: " FORMAT,__VA_ARGS__("what",e.what())), \
|
||||||
fc::std_exception_code,\
|
fc::std_exception_code,\
|
||||||
typeid(e).name(), \
|
typeid(e).name(), \
|
||||||
e.what() ) ; throw fce;\
|
e.what() ) ;\
|
||||||
} catch( ... ) { \
|
} catch( ... ) { \
|
||||||
throw fc::unhandled_exception( \
|
throw fc::unhandled_exception( \
|
||||||
FC_LOG_MESSAGE( LOG_LEVEL, FORMAT,__VA_ARGS__), \
|
FC_LOG_MESSAGE( LOG_LEVEL, FORMAT,__VA_ARGS__), \
|
||||||
|
|
@ -461,11 +461,11 @@ namespace fc
|
||||||
catch( fc::exception& er ) { \
|
catch( fc::exception& er ) { \
|
||||||
FC_RETHROW_EXCEPTION( er, warn, "", FC_FORMAT_ARG_PARAMS(__VA_ARGS__) ); \
|
FC_RETHROW_EXCEPTION( er, warn, "", FC_FORMAT_ARG_PARAMS(__VA_ARGS__) ); \
|
||||||
} catch( const std::exception& e ) { \
|
} catch( const std::exception& e ) { \
|
||||||
fc::exception fce( \
|
throw fc::exception( \
|
||||||
FC_LOG_MESSAGE( warn, "${what}: ",FC_FORMAT_ARG_PARAMS(__VA_ARGS__)("what",e.what())), \
|
FC_LOG_MESSAGE( warn, "${what}: ",FC_FORMAT_ARG_PARAMS(__VA_ARGS__)("what",e.what())), \
|
||||||
fc::std_exception_code,\
|
fc::std_exception_code,\
|
||||||
typeid(e).name(), \
|
typeid(e).name(), \
|
||||||
e.what() ) ; throw fce;\
|
e.what() ) ;\
|
||||||
} catch( ... ) { \
|
} catch( ... ) { \
|
||||||
throw fc::unhandled_exception( \
|
throw fc::unhandled_exception( \
|
||||||
FC_LOG_MESSAGE( warn, "",FC_FORMAT_ARG_PARAMS(__VA_ARGS__)), \
|
FC_LOG_MESSAGE( warn, "",FC_FORMAT_ARG_PARAMS(__VA_ARGS__)), \
|
||||||
|
|
|
||||||
|
|
@ -147,7 +147,7 @@ FC_REFLECT_TYPENAME( fc::log_message );
|
||||||
* @param LOG_LEVEL - a valid log_level::Enum name.
|
* @param LOG_LEVEL - a valid log_level::Enum name.
|
||||||
*/
|
*/
|
||||||
#define FC_LOG_CONTEXT(LOG_LEVEL) \
|
#define FC_LOG_CONTEXT(LOG_LEVEL) \
|
||||||
fc::log_context( fc::log_level::LOG_LEVEL, __FILE__, __LINE__, __func__ )
|
fc::log_context( fc::log_level::LOG_LEVEL, (const char*)__FILE__, __LINE__, (const char*)__func__ )
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @def FC_LOG_MESSAGE(LOG_LEVEL,FORMAT,...)
|
* @def FC_LOG_MESSAGE(LOG_LEVEL,FORMAT,...)
|
||||||
|
|
|
||||||
|
|
@ -46,8 +46,6 @@ BOOST_AUTO_TEST_CASE(bigint_test_2)
|
||||||
BOOST_CHECK( bi_accu >= a_1 );
|
BOOST_CHECK( bi_accu >= a_1 );
|
||||||
} while ( bi_accu.log2() <= 128 );
|
} while ( bi_accu.log2() <= 128 );
|
||||||
|
|
||||||
bi_accu = bi_accu;
|
|
||||||
|
|
||||||
BOOST_CHECK( bi_accu && !bi_accu.is_negative() && bi_accu != bi_1 );
|
BOOST_CHECK( bi_accu && !bi_accu.is_negative() && bi_accu != bi_1 );
|
||||||
|
|
||||||
BOOST_CHECK( bi_3.exp( bi_accu.log2() ) > bi_accu );
|
BOOST_CHECK( bi_3.exp( bi_accu.log2() ) > bi_accu );
|
||||||
|
|
|
||||||
|
|
@ -171,7 +171,7 @@ static bool equal( const fc::variant& a, const fc::variant& b )
|
||||||
return true;
|
return true;
|
||||||
case fc::variant::type_id::blob_type:
|
case fc::variant::type_id::blob_type:
|
||||||
default:
|
default:
|
||||||
FC_THROW_EXCEPTION( fc::invalid_arg_exception, "Unsupported variant type: " + a.get_type() );
|
FC_THROW_EXCEPTION( fc::invalid_arg_exception, "Unsupported variant type: " + std::to_string( a.get_type() ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -348,7 +348,7 @@ BOOST_AUTO_TEST_CASE(rethrow_test)
|
||||||
} FC_RETHROW_EXCEPTIONS( warn, "Argh! ${biggie}", ("biggie",biggie) ) };
|
} FC_RETHROW_EXCEPTIONS( warn, "Argh! ${biggie}", ("biggie",biggie) ) };
|
||||||
BOOST_CHECK_THROW( test_r(), fc::unknown_host_exception );
|
BOOST_CHECK_THROW( test_r(), fc::unknown_host_exception );
|
||||||
|
|
||||||
auto test_lr = [&biggie](){
|
auto test_lr = [](){
|
||||||
try {
|
try {
|
||||||
FC_THROW_EXCEPTION( fc::unknown_host_exception, "WTF?" );
|
FC_THROW_EXCEPTION( fc::unknown_host_exception, "WTF?" );
|
||||||
} FC_LOG_AND_RETHROW() };
|
} FC_LOG_AND_RETHROW() };
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue