ICU-3156 add new ICU error for use by u_setMemFuncs()

X-SVN-Rev: 12750
This commit is contained in:
Andy Heninger 2003-08-04 17:36:13 +00:00
parent 478d352852
commit 75169ddbe4
2 changed files with 3 additions and 1 deletions

View file

@ -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] = {

View file

@ -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 */
/*