mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 08:53:20 +00:00
ICU-535 Fixed some compiler warnings
X-SVN-Rev: 2733
This commit is contained in:
parent
37aa068183
commit
a634d59021
1 changed files with 2 additions and 2 deletions
|
@ -2774,7 +2774,7 @@ UnicodeString::insert(UTextOffset start,
|
|||
inline UnicodeString&
|
||||
UnicodeString::remove(UTextOffset start,
|
||||
int32_t length)
|
||||
{ return doReplace(start, length, 0, 0, 0); }
|
||||
{ return doReplace(start, length, NULL, 0, 0); }
|
||||
|
||||
inline UnicodeString&
|
||||
UnicodeString::remove()
|
||||
|
@ -2783,7 +2783,7 @@ UnicodeString::remove()
|
|||
inline UnicodeString&
|
||||
UnicodeString::removeBetween(UTextOffset start,
|
||||
UTextOffset limit)
|
||||
{ return doReplace(start, limit - start, 0, 0, 0); }
|
||||
{ return doReplace(start, limit - start, NULL, 0, 0); }
|
||||
|
||||
inline UBool
|
||||
UnicodeString::truncate(int32_t targetLength)
|
||||
|
|
Loading…
Add table
Reference in a new issue