mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-4707 Fix some compiler warnings.
X-SVN-Rev: 19546
This commit is contained in:
parent
ca09e63755
commit
573f662749
1 changed files with 5 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
*******************************************************************************
|
||||
*
|
||||
* Copyright (C) 2003, International Business Machines
|
||||
* Copyright (C) 2003-2006, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
*
|
||||
*******************************************************************************
|
||||
|
@ -222,8 +222,12 @@ getValues(uint32_t result, int32_t& value, UBool& isIndex){
|
|||
* the source codepoint is copied to the destination
|
||||
*/
|
||||
type = USPREP_TYPE_LIMIT;
|
||||
isIndex =FALSE;
|
||||
value = 0;
|
||||
}else if(result >= _SPREP_TYPE_THRESHOLD){
|
||||
type = (UStringPrepType) (result - _SPREP_TYPE_THRESHOLD);
|
||||
isIndex =FALSE;
|
||||
value = 0;
|
||||
}else{
|
||||
/* get the state */
|
||||
type = USPREP_MAP;
|
||||
|
|
Loading…
Add table
Reference in a new issue