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_;
|
||||
|
||||
@@ -215,7 +215,7 @@ public:
|
||||
test_request()
|
||||
{
|
||||
boost::asio::io_service ios;
|
||||
typedef boost::asio::ip::tcp::socket socket;
|
||||
using socket = boost::asio::ip::tcp::socket;
|
||||
socket s (ios);
|
||||
|
||||
if (! connect (s, "127.0.0.1", testPort))
|
||||
@@ -247,7 +247,7 @@ public:
|
||||
test_keepalive()
|
||||
{
|
||||
boost::asio::io_service ios;
|
||||
typedef boost::asio::ip::tcp::socket socket;
|
||||
using socket = boost::asio::ip::tcp::socket;
|
||||
socket s (ios);
|
||||
|
||||
if (! connect (s, "127.0.0.1", testPort))
|
||||
|
||||
Reference in New Issue
Block a user