Skip to content

Commit 7443a8b

Browse files
committed
Attempt to fix build with boost v1.87.
1 parent 135f0c1 commit 7443a8b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

client/app/common/AppClient.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -721,8 +721,7 @@ void AppClient::nextTickProgramInternal(unsigned duration)
721721

722722
unsigned AppClient::cancelNextTickWaitInternal()
723723
{
724-
boost::system::error_code ec;
725-
m_timer.cancel(ec);
724+
m_timer.cancel();
726725
auto now = Clock::now();
727726
auto diff = std::chrono::duration_cast<std::chrono::milliseconds>(now - m_lastWaitProgram).count();
728727
return static_cast<unsigned>(diff);

0 commit comments

Comments
 (0)