summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
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}