objc-list.h (list_free): Add keyword 'inline' to avoid unused warning.
authorManuel López-Ibáñez <manu@gcc.gnu.org>
Sun, 18 Feb 2007 11:55:53 +0000 (11:55 +0000)
committerManuel López-Ibáñez <manu@gcc.gnu.org>
Sun, 18 Feb 2007 11:55:53 +0000 (11:55 +0000)
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

libobjc/ChangeLog
libobjc/objc/objc-list.h

index dbc79f8eb846805a27ebc626c948def7e67e934d..880112276bd70f6e624e72f6d959f405149f69ee 100644 (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.
index 051e1c2c132af0a9060660c21031dcf2e6a761be..870846167221f904b7be269a572afdb010d2a6e6 100644 (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)