forked from lthn/blockchain
fixed uninitialized member in idle_callback_conext_base
This commit is contained in:
parent
6e456458bb
commit
2cde1c530d
1 changed files with 2 additions and 2 deletions
|
|
@ -213,8 +213,8 @@ class boosted_tcp_server
|
|||
return true;
|
||||
}
|
||||
|
||||
idle_callback_conext_base(boost::asio::io_service& io_serice)
|
||||
: m_timer(io_serice)
|
||||
idle_callback_conext_base(boost::asio::io_service& io_serice): m_timer(io_serice),
|
||||
m_period(0)
|
||||
{
|
||||
}
|
||||
boost::asio::deadline_timer m_timer;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue