mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Change typedef to using.
Conflicts: src/ripple/app/TODO.md src/ripple/app/ledger/Ledger.h src/ripple/protocol/Protocol.h
This commit is contained in:
committed by
Vinnie Falco
parent
52f298f150
commit
155fcdbcd0
@@ -68,14 +68,14 @@ private:
|
||||
using list_type = boost::intrusive::make_list <Child,
|
||||
boost::intrusive::constant_time_size <false>>::type;
|
||||
|
||||
typedef std::chrono::system_clock clock_type;
|
||||
using clock_type = std::chrono::system_clock;
|
||||
|
||||
enum
|
||||
{
|
||||
historySize = 100
|
||||
};
|
||||
|
||||
typedef std::vector <std::shared_ptr<Door>> Doors;
|
||||
using Doors = std::vector <std::shared_ptr<Door>>;
|
||||
|
||||
Handler& handler_;
|
||||
beast::Journal journal_;
|
||||
|
||||
Reference in New Issue
Block a user