]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/keyword.cc
Release: bump Welcome versions.
[lilypond.git] / lily / keyword.cc
index 8f969e6ce858822471c2a0d49adbee8fe663d999..b5f7947ada203e31550ee041a557f37f439b115c 100644 (file)
@@ -14,17 +14,12 @@ bool tab_less (Keyword_ent const &p1, Keyword_ent const &p2)
   return strcmp (p1.name_, p2.name_) < 0;
 }
 
-int tabcmp (Keyword_ent const &p1, Keyword_ent const &p2)
-{
-  return strcmp (p1.name_, p2.name_);
-}
-
 Keyword_table::Keyword_table (Keyword_ent *tab)
 {
   while (tab->name_)
     table_.push_back (*tab++);
 
-  vector_sort (table_, tabcmp);
+  vector_sort (table_, tab_less);
 }
 
 vsize