From a634d59021d7afee95027c954fe20c34e256e488 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Thu, 19 Oct 2000 21:06:02 +0000 Subject: [PATCH] ICU-535 Fixed some compiler warnings X-SVN-Rev: 2733 --- icu4c/source/common/unicode/unistr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icu4c/source/common/unicode/unistr.h b/icu4c/source/common/unicode/unistr.h index 76140bced65..4dcae3bd963 100644 --- a/icu4c/source/common/unicode/unistr.h +++ b/icu4c/source/common/unicode/unistr.h @@ -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)