mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-1109 add U_STRING_NOT_TERMINATED_WARNING
X-SVN-Rev: 5693
This commit is contained in:
parent
3bab3fb2ac
commit
0cf4543b4a
2 changed files with 4 additions and 1 deletions
|
@ -1711,7 +1711,8 @@ _uErrorInfoName[U_ERROR_WARNING_LIMIT-U_ERROR_WARNING_START]={
|
|||
"U_USING_FALLBACK_WARNING",
|
||||
"U_USING_DEFAULT_WARNING",
|
||||
"U_SAFECLONE_ALLOCATED_WARNING",
|
||||
"U_STATE_OLD_WARNING"
|
||||
"U_STATE_OLD_WARNING",
|
||||
"U_STRING_NOT_TERMINATED_WARNING"
|
||||
};
|
||||
|
||||
static const char * const
|
||||
|
|
|
@ -376,6 +376,8 @@ enum UErrorCode {
|
|||
|
||||
U_STATE_OLD_WARNING = -125, /**< ICU has to use compatibility layer to construct the service. Expect performance/memory usage degradation. Consider upgrading */
|
||||
|
||||
U_STRING_NOT_TERMINATED_WARNING = -124,/**< An output string could not be NUL-terminated because output length==destCapacity. */
|
||||
|
||||
U_ERROR_WARNING_LIMIT, /**< This must always be the last warning value to indicate the limit for UErrorCode warnings (last warning code +1) */
|
||||
|
||||
U_ZERO_ERROR = 0, /**< No error, no warning. */
|
||||
|
|
Loading…
Add table
Reference in a new issue