lib/icu/CaseFold: add "noexcept"

This commit is contained in:
Max Kellermann 2017-09-20 23:23:05 +02:00
parent 59b49b7881
commit 42914e8227
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@
#include <string.h>
AllocatedString<>
IcuCaseFold(const char *src)
IcuCaseFold(const char *src) noexcept
try {
#ifdef HAVE_ICU
#if !CLANG_CHECK_VERSION(3,6)

View File

@ -27,6 +27,6 @@ template<typename T> class AllocatedString;
gcc_nonnull_all
AllocatedString<char>
IcuCaseFold(const char *src);
IcuCaseFold(const char *src) noexcept;
#endif