+ revert make_shared in kismet_thread (introduced in #2907)
This commit is contained in:
parent
e588b2e135
commit
bfd27f6047
1 changed files with 2 additions and 2 deletions
|
@ -91,7 +91,7 @@ kismet_datasource::kismet_datasource(parameters const& params, bool bind)
|
|||
boost::optional<std::string> ext = params_.get<std::string>("extent");
|
||||
if (ext) extent_initialized_ = extent_.from_string(*ext);
|
||||
|
||||
kismet_thread.reset (boost::make_shared<boost::thread>(boost::bind (&kismet_datasource::run, this, host_, port_)));
|
||||
kismet_thread.reset (new boost::thread (boost::bind (&kismet_datasource::run, this, host_, port_)));
|
||||
|
||||
if (bind)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue