+ revert make_shared in kismet_thread (introduced in #2907)

This commit is contained in:
Artem Pavlenko 2011-05-19 16:39:55 +00:00
parent e588b2e135
commit bfd27f6047

View file

@ -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)
{