Silly boost needs mutable locks.

This commit is contained in:
David Schwartz
2013-09-24 16:52:32 -07:00
parent 7e82612cd5
commit be828e834d

View File

@@ -99,9 +99,9 @@ private:
uint256 mClosedLedgerHash;
uint256 mPreviousLedgerHash;
std::list<uint256> mRecentLedgers;
std::list<uint256> mRecentTxSets;
boost::mutex mRecentLock;
std::list<uint256> mRecentLedgers;
std::list<uint256> mRecentTxSets;
mutable boost::mutex mRecentLock;
boost::asio::deadline_timer mActivityTimer;