lib/icu/Init: add "noexcept"

This commit is contained in:
Max Kellermann 2018-08-02 10:17:04 +02:00
parent 68c023cdd8
commit b8f3de693f
2 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@ IcuInit()
}
void
IcuFinish()
IcuFinish() noexcept
{
IcuCollateFinish();

View File

@ -28,12 +28,12 @@ void
IcuInit();
void
IcuFinish();
IcuFinish() noexcept;
#else
static inline void IcuInit() {}
static inline void IcuFinish() {}
static inline void IcuInit() noexcept {}
static inline void IcuFinish() noexcept {}
#endif