mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Replace calls to new(). (#243)
* Replace all unavoidable uses of `new` with `std::make_unique` or `std::make_shared`. * Fix some 80-column issues.
This commit is contained in:
committed by
Scott Schurr
parent
ef51128270
commit
d5193a776e
@@ -371,7 +371,7 @@ public:
|
||||
|
||||
, m_orderBookDB (*m_jobQueue)
|
||||
|
||||
, m_pathRequests (new PathRequests (
|
||||
, m_pathRequests (std::make_unique<PathRequests> (
|
||||
m_logs.journal("PathRequest"), m_collectorManager->collector ()))
|
||||
|
||||
, m_ledgerMaster (make_LedgerMaster (getConfig (), stopwatch (),
|
||||
|
||||
Reference in New Issue
Block a user