ICU-2474 Fix linkage problem
X-SVN-Rev: 10267
This commit is contained in:
parent
e0beb5b008
commit
5c279e1290
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user