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/IDN
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/IDN')
-rw-r--r--Swiften/IDN/PlatformIDNConverter.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/Swiften/IDN/PlatformIDNConverter.cpp b/Swiften/IDN/PlatformIDNConverter.cpp
index c85d3b6..c6104fb 100644
--- a/Swiften/IDN/PlatformIDNConverter.cpp
+++ b/Swiften/IDN/PlatformIDNConverter.cpp
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2012-2016 Isode Limited. 2 * Copyright (c) 2012-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 */
@@ -21,9 +21,10 @@ IDNConverter* PlatformIDNConverter::create() {
21#else 21#else
22#if defined(NEED_IDN) 22#if defined(NEED_IDN)
23#error "No IDN implementation" 23#error "No IDN implementation"
24#endif 24#else
25 return nullptr; 25 return nullptr;
26#endif 26#endif
27#endif
27} 28}
28 29
29} 30}