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

This commit is contained in:
Zachary Michaels
2014-09-15 16:28:27 -04:00
committed by Riccardo Spagni
parent ffe7bf8c1c
commit 59ab569da1
3 changed files with 11 additions and 11 deletions
+9 -9
View File
@@ -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)
{
}