Skip to content
This repository has been archived by the owner on Jun 30, 2020. It is now read-only.

Commit

Permalink
add .load() to make Boost 1.67 happy with its new is_integral check
Browse files Browse the repository at this point in the history
  • Loading branch information
teutone authored and wowario committed Jul 27, 2018
1 parent 4cb1fa3 commit e492718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/api/wallet.cpp
Expand Up @@ -1740,7 +1740,7 @@ void WalletImpl::refreshThreadFunc()
// if auto refresh enabled, we wait for the "m_refreshIntervalSeconds" interval.
// if not - we wait forever
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);
} else {
m_refreshCV.wait(lock);
Expand Down

0 comments on commit e492718

Please sign in to comment.