mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-15 18:10:26 +01:00
style-only: Use using instead of typedef for BlockMap
This commit is contained in:
@@ -56,7 +56,7 @@ extern uint64_t nPruneTarget;
|
||||
// we ever switch to another associative container, we need to either use a
|
||||
// container that has stable addressing (true of all std associative
|
||||
// containers), or make the key a `std::unique_ptr<CBlockIndex>`
|
||||
typedef std::unordered_map<uint256, CBlockIndex, BlockHasher> BlockMap;
|
||||
using BlockMap = std::unordered_map<uint256, CBlockIndex, BlockHasher>;
|
||||
|
||||
struct CBlockIndexWorkComparator {
|
||||
bool operator()(const CBlockIndex* pa, const CBlockIndex* pb) const;
|
||||
|
||||
Reference in New Issue
Block a user