diff --git a/icu4c/source/common/unorm.cpp b/icu4c/source/common/unorm.cpp index eab229efe0..cbfe84d849 100644 --- a/icu4c/source/common/unorm.cpp +++ b/icu4c/source/common/unorm.cpp @@ -214,6 +214,13 @@ isAcceptable(void * /* context */, } } +static UBool U_CALLCONV +_enumPropertyStartsRange(const void *context, UChar32 start, UChar32 limit, uint32_t value) { + /* add the start code point to the USet */ + uset_add((USet *)context, start); + return TRUE; +} + U_CDECL_END static int8_t @@ -836,13 +843,6 @@ unorm_isNFSkippable(UChar32 c, UNormalizationMode mode) { /* } else { FCC, test fcd<=1 instead of the above } */ } -static UBool U_CALLCONV -_enumPropertyStartsRange(const void *context, UChar32 start, UChar32 limit, uint32_t value) { - /* add the start code point to the USet */ - uset_add((USet *)context, start); - return TRUE; -} - U_CAPI void U_EXPORT2 unorm_addPropertyStarts(USet *set) { UErrorCode errorCode;