mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 06:28:31 +01:00
refactor: use C++11 default initializers
This commit is contained in:
@@ -16,6 +16,6 @@
|
||||
#include <validation.h>
|
||||
|
||||
namespace node {
|
||||
NodeContext::NodeContext() {}
|
||||
NodeContext::~NodeContext() {}
|
||||
NodeContext::NodeContext() = default;
|
||||
NodeContext::~NodeContext() = default;
|
||||
} // namespace node
|
||||
|
||||
Reference in New Issue
Block a user