From c5664786ebf2703ba3e48ebdf58fe4371d8722f1 Mon Sep 17 00:00:00 2001 From: Michael Ow Date: Mon, 9 Jun 2008 22:10:40 +0000 Subject: [PATCH] ICU-5955 Change declaration of inline function to static. X-SVN-Rev: 24131 --- icu4c/source/i18n/ucol_imp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/i18n/ucol_imp.h b/icu4c/source/i18n/ucol_imp.h index 1ffd4eb0c4e..79faac1547b 100644 --- a/icu4c/source/i18n/ucol_imp.h +++ b/icu4c/source/i18n/ucol_imp.h @@ -1041,7 +1041,7 @@ static inline UBool ucol_unsafeCP(UChar c, const UCollator *coll) { #endif /* XP_CPLUSPLUS */ /* The offsetBuffer in collIterate might need to be freed to avoid memory leaks. */ -static inline void freeOffsetBuffer(collIterate *s) { +static void freeOffsetBuffer(collIterate *s) { if (s != NULL && s->offsetBuffer != NULL) { uprv_free(s->offsetBuffer); s->offsetBuffer = NULL;