summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2018-10-09 11:18:25 (GMT)
committerTobias Markmann <tm@ayena.de>2018-10-09 11:18:25 (GMT)
commit5c7ac2eeb74e7c29b72f2e78065ff814dc3a6939 (patch)
tree7e052ca4354886e57c53e532ccfe18f0c4f979a2 /Swiften/Crypto
parent5d7ba3f76862cd561b295b79125a68dc4acf20df (diff)
downloadswift-5c7ac2eeb74e7c29b72f2e78065ff814dc3a6939.zip
swift-5c7ac2eeb74e7c29b72f2e78065ff814dc3a6939.tar.bz2
Address compiler warnings about missing override on dtors
Test-Information: Builds and compiler warnings in not emitted by clang 8.0.0 anymore. Change-Id: I118552b3b058acd15cdb9579e3695d9bf3d6b2fe
Diffstat (limited to 'Swiften/Crypto')
-rw-r--r--Swiften/Crypto/OpenSSLCryptoProvider.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Swiften/Crypto/OpenSSLCryptoProvider.cpp b/Swiften/Crypto/OpenSSLCryptoProvider.cpp
index b46cb2a..e8c1c73 100644
--- a/Swiften/Crypto/OpenSSLCryptoProvider.cpp
+++ b/Swiften/Crypto/OpenSSLCryptoProvider.cpp
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2013-2017 Isode Limited. 2 * Copyright (c) 2013-2018 Isode Limited.
3 * All rights reserved. 3 * All rights reserved.
4 * See the COPYING file for more information. 4 * See the COPYING file for more information.
5 */ 5 */
@@ -28,7 +28,7 @@ namespace {
28 } 28 }
29 } 29 }
30 30
31 ~SHA1Hash() { 31 ~SHA1Hash() override {
32 } 32 }
33 33
34 virtual Hash& update(const ByteArray& data) override { 34 virtual Hash& update(const ByteArray& data) override {
@@ -69,7 +69,7 @@ namespace {
69 } 69 }
70 } 70 }
71 71
72 ~MD5Hash() { 72 ~MD5Hash() override {
73 } 73 }
74 74
75 virtual Hash& update(const ByteArray& data) override { 75 virtual Hash& update(const ByteArray& data) override {