diff options
author | Jan Engelhardt <[email protected]> | 2024-06-11 18:45:51 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2024-06-11 18:45:51 +0000 |
commit | fb5b82746a4f8aa52f8408bc2b98b55993d2aaea (patch) | |
tree | 29a00ac90f434f1ad305ee73f7e4c5d1a1ac1335 /src | |
parent | build: resolve a -Wunused-function compiler warning (#308) (diff) | |
download | vmime-fb5b82746a4f8aa52f8408bc2b98b55993d2aaea.tar.gz vmime-fb5b82746a4f8aa52f8408bc2b98b55993d2aaea.zip |
contrib: update utfcpp to v4.0.5 (#309)
Download a new version from https://github.com/nemtrif/utfcpp/
which explicitly supports C++17.
Diffstat (limited to 'src')
-rw-r--r-- | src/vmime/charsetConverter_idna.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vmime/charsetConverter_idna.cpp b/src/vmime/charsetConverter_idna.cpp index eb8764f5..db4e1311 100644 --- a/src/vmime/charsetConverter_idna.cpp +++ b/src/vmime/charsetConverter_idna.cpp @@ -111,7 +111,7 @@ void charsetConverter_idna::convert(const string& in, string& out, status* st) { unichars.reserve(inUTF8.length()); while (ch < end) { - const utf8::uint32_t uc = utf8::unchecked::next(ch); + const uint32_t uc = utf8::unchecked::next(ch); unichars.push_back(uc); } |