mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-15 01:42:37 +00:00
ICU-3156 add new ICU error for use by u_setMemFuncs()
X-SVN-Rev: 12750
This commit is contained in:
parent
478d352852
commit
75169ddbe4
2 changed files with 3 additions and 1 deletions
|
@ -2310,7 +2310,8 @@ _uErrorName[U_STANDARD_ERROR_LIMIT]={
|
|||
"U_STATE_TOO_OLD_ERROR",
|
||||
"U_TOO_MANY_ALIASES_ERROR",
|
||||
"U_ENUM_OUT_OF_SYNC_ERROR",
|
||||
"U_INVARIANT_CONVERSION_ERROR"
|
||||
"U_INVARIANT_CONVERSION_ERROR",
|
||||
"U_INVALID_STATE_ERROR"
|
||||
};
|
||||
static const char * const
|
||||
_uFmtErrorName[U_FMT_PARSE_ERROR_LIMIT - U_FMT_PARSE_ERROR_START] = {
|
||||
|
|
|
@ -546,6 +546,7 @@ typedef enum UErrorCode {
|
|||
It is very possible that a circular alias definition has occured */
|
||||
U_ENUM_OUT_OF_SYNC_ERROR = 25, /**< UEnumeration out of sync with underlying collection */
|
||||
U_INVARIANT_CONVERSION_ERROR = 26, /**< Unable to convert a UChar* string to char* with the invariant converter. */
|
||||
U_INVALID_STATE_ERROR = 27, /**< Requested operation can not be completed with ICU in its current state */
|
||||
|
||||
U_STANDARD_ERROR_LIMIT, /**< This must always be the last value to indicate the limit for standard errors */
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue