diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2020-03-14 08:50:15 +0200 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2020-05-08 10:37:05 +0300 |
commit | d044e0ec7d37bbcdf10bbdb903b9119741c7297d (patch) | |
tree | 9160779f272d0511e6e5c7c025c8e187c5316c25 /src/interfaces | |
parent | 1551cea2d52cac403ff506a7cc955d8de8fd6f3e (diff) |
refactor: Remove override for final overriders
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/chain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/chain.cpp b/src/interfaces/chain.cpp index c5262e4bc0..31dfb4d16a 100644 --- a/src/interfaces/chain.cpp +++ b/src/interfaces/chain.cpp @@ -127,7 +127,7 @@ public: ::tableRPC.appendCommand(m_command.name, &m_command); } - void disconnect() override final + void disconnect() final { if (m_wrapped_command) { m_wrapped_command = nullptr; |