From: manu Date: Sun, 18 Feb 2007 11:55:53 +0000 (+0000) Subject: 2007-02-18 Manuel Lopez-Ibanez X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=commitdiff_plain;h=91bf330a0054a3f8e5b20fc16041683a826635ea 2007-02-18 Manuel Lopez-Ibanez * objc/objc-list.h (list_free): Add keyword 'inline' to avoid unused warning. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@122090 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index dbc79f8eb84..880112276bd 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,3 +1,8 @@ +2007-02-18 Manuel Lopez-Ibanez + + * objc/objc-list.h (list_free): Add keyword 'inline' to avoid + unused warning. + 2006-10-31 Geoffrey Keating * encoding.c (darwin_rs6000_special_round_type_align): New. diff --git a/libobjc/objc/objc-list.h b/libobjc/objc/objc-list.h index 051e1c2c132..87084616722 100644 --- a/libobjc/objc/objc-list.h +++ b/libobjc/objc/objc-list.h @@ -139,7 +139,7 @@ list_find(struct objc_list** list, void* elem) /* Free list (backwards recursive) */ -static void +static inline void list_free(struct objc_list* list) { if(list)