ICU-5955 Change declaration of inline function to static.

X-SVN-Rev: 24131
This commit is contained in:
Michael Ow 2008-06-09 22:10:40 +00:00
parent 7c178f621e
commit c5664786eb

View file

@ -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;