mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +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
@@ -2165,12 +2165,12 @@ private:
|
||||
}
|
||||
}
|
||||
private:
|
||||
typedef RippleMutex FetchLockType;
|
||||
typedef std::lock_guard <FetchLockType> ScopedFetchLockType;
|
||||
using FetchLockType = RippleMutex;
|
||||
using ScopedFetchLockType = std::lock_guard <FetchLockType>;
|
||||
FetchLockType mFetchLock;
|
||||
|
||||
typedef RippleRecursiveMutex UNLLockType;
|
||||
typedef std::lock_guard <UNLLockType> ScopedUNLLockType;
|
||||
using UNLLockType = RippleRecursiveMutex;
|
||||
using ScopedUNLLockType = std::lock_guard <UNLLockType>;
|
||||
UNLLockType mUNLLock;
|
||||
|
||||
// VFALCO TODO Replace ptime with beast::Time
|
||||
|
||||
Reference in New Issue
Block a user