Replace boost::shared_ptr with std::shared_ptr

This commit is contained in:
Vinnie Falco
2014-06-05 10:50:08 -07:00
parent 1aa0749ba8
commit 4362cb660b
103 changed files with 477 additions and 482 deletions

View File

@@ -44,7 +44,7 @@ Job::Job (JobType type,
, mName (name)
, m_queue_time (clock_type::now ())
{
m_loadEvent = boost::make_shared <LoadEvent> (boost::ref (lm), name, false);
m_loadEvent = std::make_shared <LoadEvent> (boost::ref (lm), name, false);
}
JobType Job::getType () const