Bug 60053 - hb-common.cc:181:6: warning: ‘void free_langs()’ defined but not used
authorBehdad Esfahbod <behdad@behdad.org>
Wed, 30 Jan 2013 03:45:00 +0000 (22:45 -0500)
committerBehdad Esfahbod <behdad@behdad.org>
Wed, 30 Jan 2013 03:45:00 +0000 (22:45 -0500)
src/hb-common.cc
src/hb-ft.cc
src/hb-shape.cc
src/hb-shaper.cc

index 9422555..27ecfa7 100644 (file)
@@ -177,7 +177,7 @@ struct hb_language_item_t {
 
 static hb_language_item_t *langs;
 
-static
+static inline
 void free_langs (void)
 {
   while (langs) {
index 6198185..1e87c1c 100644 (file)
@@ -403,7 +403,7 @@ hb_ft_font_create (FT_Face           ft_face,
 
 static FT_Library ft_library;
 
-static
+static inline
 void free_ft_library (void)
 {
   FT_Done_FreeType (ft_library);
index 389ce3e..7ae56e3 100644 (file)
@@ -202,7 +202,7 @@ hb_feature_to_string (hb_feature_t *feature,
 
 static const char **static_shaper_list;
 
-static
+static inline
 void free_static_shaper_list (void)
 {
   free (static_shaper_list);
index 1c1aed9..44f718a 100644 (file)
@@ -40,7 +40,7 @@ static const hb_shaper_pair_t all_shapers[] = {
 
 static const hb_shaper_pair_t *static_shapers;
 
-static
+static inline
 void free_static_shapers (void)
 {
   if (unlikely (static_shapers != all_shapers))