mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 06:25:30 +00:00
ICU-900 Fixed some compiler warnings for HPUX with CC
X-SVN-Rev: 4382
This commit is contained in:
parent
6a64679ac0
commit
f41f1ac2dc
1 changed files with 2 additions and 2 deletions
|
@ -1857,7 +1857,7 @@ public:
|
|||
* @stable
|
||||
*/
|
||||
inline UnicodeString& remove(UTextOffset start,
|
||||
int32_t length = INT32_MAX);
|
||||
int32_t length = (int32_t)INT32_MAX);
|
||||
|
||||
/**
|
||||
* Remove the characters in the range
|
||||
|
@ -1868,7 +1868,7 @@ public:
|
|||
* @stable
|
||||
*/
|
||||
inline UnicodeString& removeBetween(UTextOffset start,
|
||||
UTextOffset limit = INT32_MAX);
|
||||
UTextOffset limit = (int32_t)INT32_MAX);
|
||||
|
||||
|
||||
/* Length operations */
|
||||
|
|
Loading…
Add table
Reference in a new issue