Commit b8f3de69 authored by Max Kellermann's avatar Max Kellermann

lib/icu/Init: add "noexcept"

parent 68c023cd
...@@ -37,7 +37,7 @@ IcuInit() ...@@ -37,7 +37,7 @@ IcuInit()
} }
void void
IcuFinish() IcuFinish() noexcept
{ {
IcuCollateFinish(); IcuCollateFinish();
......
...@@ -28,12 +28,12 @@ void ...@@ -28,12 +28,12 @@ void
IcuInit(); IcuInit();
void void
IcuFinish(); IcuFinish() noexcept;
#else #else
static inline void IcuInit() {} static inline void IcuInit() noexcept {}
static inline void IcuFinish() {} static inline void IcuFinish() noexcept {}
#endif #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