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
9ad5644a8c
commit
845c9f8a51
@@ -235,7 +235,7 @@ private:
|
||||
std::size_t m_seed;
|
||||
PRNG m_prng;
|
||||
|
||||
typedef block_stream <std::size_t, prng_hasher <PRNG>> base;
|
||||
using base = block_stream <std::size_t, prng_hasher <PRNG>>;
|
||||
friend base;
|
||||
|
||||
// compress
|
||||
@@ -351,8 +351,8 @@ struct is_contiguously_hashable <hash_append_tests::FastKey>
|
||||
class hash_append_test : public unit_test::suite
|
||||
{
|
||||
public:
|
||||
typedef hash_append_tests::SlowKey SlowKey;
|
||||
typedef hash_append_tests::FastKey FastKey;
|
||||
using SlowKey = hash_append_tests::SlowKey;
|
||||
using FastKey = hash_append_tests::FastKey;
|
||||
|
||||
struct results_t
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user