mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Replace boost::shared_ptr with std::shared_ptr
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user