Give up on brace initializers in initializer lists (MSVC bug)

release-v0.4.0.1
Zachary Michaels 10 years ago committed by Riccardo Spagni
parent ffe7bf8c1c
commit 59ab569da1

@ -55,7 +55,7 @@ public:
, bool testnet
)
: m_srv(srv)
, m_testnet {testnet}
, m_testnet(testnet)
{
m_cmd_binder.set_handler("help", boost::bind(&daemon_cmmands_handler::help, this, _1), "Show this help");
m_cmd_binder.set_handler("print_pl", boost::bind(&daemon_cmmands_handler::print_pl, this, _1), "Print peer list");

@ -79,7 +79,7 @@ namespace cryptonote
)
: m_core(cr)
, m_p2p(p2p)
, m_testnet {testnet}
, m_testnet(testnet)
{}
//------------------------------------------------------------------------------------------------------------------------------
bool core_rpc_server::handle_command_line(

@ -383,11 +383,11 @@ namespace tools
, uint64_t unlock_time
, bool testnet
)
: transfer_error {std::move(loc), "transaction was not constructed"}
, m_sources {sources}
, m_destinations {destinations}
, m_unlock_time {unlock_time}
, m_testnet {testnet}
: transfer_error(std::move(loc), "transaction was not constructed")
, m_sources(sources)
, m_destinations(destinations)
, m_unlock_time(unlock_time)
, m_testnet(testnet)
{
}
@ -471,10 +471,10 @@ namespace tools
, uint64_t fee
, bool testnet
)
: transfer_error {std::move(loc), "transaction sum + fee exceeds " + cryptonote::print_money(std::numeric_limits<uint64_t>::max())}
, m_destinations {destinations}
, m_fee {fee}
, m_testnet {testnet}
: transfer_error(std::move(loc), "transaction sum + fee exceeds " + cryptonote::print_money(std::numeric_limits<uint64_t>::max()))
, m_destinations(destinations)
, m_fee(fee)
, m_testnet(testnet)
{
}

Loading…
Cancel
Save