objc-list.h (list_free): Add keyword 'inline' to avoid unused warning.

2007-02-18  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>

	* objc/objc-list.h (list_free): Add keyword 'inline' to avoid
	unused warning.

From-SVN: r122090
This commit is contained in:
Manuel López-Ibáñez 2007-02-18 11:55:53 +00:00
parent f56fe8ff92
commit 3034b4535a
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-02-18 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
* objc/objc-list.h (list_free): Add keyword 'inline' to avoid
unused warning.
2006-10-31 Geoffrey Keating <geoffk@apple.com>
* encoding.c (darwin_rs6000_special_round_type_align): New.

View File

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