ICU-535 Fixed some compiler warnings
X-SVN-Rev: 2733
This commit is contained in:
parent
37aa068183
commit
a634d59021
@ -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…
Reference in New Issue
Block a user