Commit b8f3de69 authored by Max Kellermann's avatar Max Kellermann

lib/icu/Init: add "noexcept"

parent 68c023cd
......@@ -37,7 +37,7 @@ IcuInit()
}
void
IcuFinish()
IcuFinish() noexcept
{
IcuCollateFinish();
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment