diff options
Diffstat (limited to 'Swiften/IDN/IDNA.h')
-rw-r--r-- | Swiften/IDN/IDNA.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/IDN/IDNA.h b/Swiften/IDN/IDNA.h index cc4144b..19af1e6 100644 --- a/Swiften/IDN/IDNA.h +++ b/Swiften/IDN/IDNA.h @@ -6,11 +6,11 @@ #pragma once -#include "Swiften/Base/String.h" +#include <string> namespace Swift { class IDNA { public: - static String getEncoded(const String& s); + static std::string getEncoded(const std::string& s); }; } |