remove timer interval from ctor init list

This commit is contained in:
Steven Geddis 2018-02-01 15:31:19 +01:00
parent 5a853134aa
commit accc1810a0
1 changed files with 1 additions and 2 deletions

View File

@ -552,8 +552,7 @@ public:
explicit LibBoostAsioHandler(boost::asio::io_service &io_service) :
_ioservice(io_service),
_strand(std::make_shared<boost::asio::io_service::strand>(_ioservice)),
_timer(std::make_shared<Timer>(_ioservice,_strand)),
_timer_interval(0)
_timer(std::make_shared<Timer>(_ioservice,_strand))
{
}