mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-2699 Fix some compiler warnings.
X-SVN-Rev: 11591
This commit is contained in:
parent
e9ff4a1851
commit
7460b9d8c0
1 changed files with 1 additions and 1 deletions
|
@ -316,7 +316,7 @@ inline UBool StringPrep::getNormalization(){
|
|||
}
|
||||
|
||||
inline void StringPrep::getUnicodeVersion(UVersionInfo& info){
|
||||
for(int32_t i=0; i< (sizeof(info)/sizeof(info[0])); i++){
|
||||
for(int32_t i=0; i< (int32_t)(sizeof(info)/sizeof(info[0])); i++){
|
||||
info[i] = unicodeVersion[i];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue