mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-19 06:43:45 +01:00
refactor: use C++11 default initializers
This commit is contained in:
@@ -2654,7 +2654,7 @@ static int64_t nTimePostConnect = 0;
|
||||
struct PerBlockConnectTrace {
|
||||
CBlockIndex* pindex = nullptr;
|
||||
std::shared_ptr<const CBlock> pblock;
|
||||
PerBlockConnectTrace() {}
|
||||
PerBlockConnectTrace() = default;
|
||||
};
|
||||
/**
|
||||
* Used to track blocks whose transactions were applied to the UTXO state as a
|
||||
|
||||
Reference in New Issue
Block a user