From 7aa40f55636be565441a9e0af8de0a346bfa4da2 Mon Sep 17 00:00:00 2001 From: fanquake Date: Wed, 11 May 2022 16:02:15 +0100 Subject: refactor: use C++11 default initializers --- src/wallet/context.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/wallet/context.cpp') diff --git a/src/wallet/context.cpp b/src/wallet/context.cpp index 800aa5bf9c..3d4bf9d703 100644 --- a/src/wallet/context.cpp +++ b/src/wallet/context.cpp @@ -5,6 +5,6 @@ #include namespace wallet { -WalletContext::WalletContext() {} -WalletContext::~WalletContext() {} +WalletContext::WalletContext() = default; +WalletContext::~WalletContext() = default; } // namespace wallet -- cgit v1.2.3