mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 12:40:02 +00:00
ICU-4078 check for error code
X-SVN-Rev: 16314
This commit is contained in:
parent
f7b7183d7a
commit
95a00e8e5c
1 changed files with 4 additions and 0 deletions
|
@ -343,6 +343,10 @@ _enumPropertyStartsRange(const void *context, UChar32 start, UChar32 limit, uint
|
|||
|
||||
U_CAPI void U_EXPORT2
|
||||
ucase_addPropertyStarts(const UCaseProps *csp, USetAdder *sa, UErrorCode *pErrorCode) {
|
||||
if(U_FAILURE(*pErrorCode)) {
|
||||
return;
|
||||
}
|
||||
|
||||
/* add the start code point of each same-value range of the trie */
|
||||
utrie_enum(&csp->trie, NULL, _enumPropertyStartsRange, sa);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue