From 47908a890726f424371c9784b8508cff163c2c78 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 10 Feb 2011 19:24:22 -0500 Subject: Visual C++ compatibility fixes --- rpc.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rpc.cpp') diff --git a/rpc.cpp b/rpc.cpp index 055e0cf1e7..69b09bcfa7 100644 --- a/rpc.cpp +++ b/rpc.cpp @@ -1015,13 +1015,13 @@ Value listtransactions(const Array& params, bool fHelp) for (map::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { CWalletTx* wtx = &((*it).second); - txByTime.insert(make_pair(wtx->GetTxTime(), TxPair(wtx, 0))); + txByTime.insert(make_pair(wtx->GetTxTime(), TxPair(wtx, (CAccountingEntry*)0))); } list acentries; walletdb.ListAccountCreditDebit(strAccount, acentries); foreach(CAccountingEntry& entry, acentries) { - txByTime.insert(make_pair(entry.nTime, TxPair(0, &entry))); + txByTime.insert(make_pair(entry.nTime, TxPair((CWalletTx*)0, &entry))); } // Now: iterate backwards until we have nCount items to return: @@ -1762,7 +1762,7 @@ void ThreadRPCServer2(void* parg) map mapHeaders; string strRequest; - boost::thread api_caller(ReadHTTP, ref(stream), ref(mapHeaders), ref(strRequest)); + boost::thread api_caller(ReadHTTP, boost::ref(stream), boost::ref(mapHeaders), boost::ref(strRequest)); if (!api_caller.timed_join(boost::posix_time::seconds(GetArg("-rpctimeout", 30)))) { // Timed out: acceptor.cancel(); -- cgit v1.2.3