add .load() to make Boost 1.67 happy with its new is_integral check

This commit is contained in:
Teutone 2018-04-30 19:01:58 +02:00 committed by moneromooo-monero
parent 9a4f1f0134
commit 1772c8593a
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 1 additions and 1 deletions

View File

@ -1783,7 +1783,7 @@ void WalletImpl::refreshThreadFunc()
// if auto refresh enabled, we wait for the "m_refreshIntervalSeconds" interval. // if auto refresh enabled, we wait for the "m_refreshIntervalSeconds" interval.
// if not - we wait forever // if not - we wait forever
if (m_refreshIntervalMillis > 0) { if (m_refreshIntervalMillis > 0) {
boost::posix_time::milliseconds wait_for_ms(m_refreshIntervalMillis); boost::posix_time::milliseconds wait_for_ms(m_refreshIntervalMillis.load());
m_refreshCV.timed_wait(lock, wait_for_ms); m_refreshCV.timed_wait(lock, wait_for_ms);
} else { } else {
m_refreshCV.wait(lock); m_refreshCV.wait(lock);