]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/keyword.hh
Limit beamlet width at abs(last_stem - stem)/2. Fixes #178.
[lilypond.git] / lily / include / keyword.hh
index 98445d7a2ded3fb23b233c787580c65fe96661cf..ba4867204da0879d227715627ebecf183588073e 100644 (file)
@@ -1,13 +1,13 @@
 /*
   keyword.hh -- part of GNU LilyPond
 
-  (c) 1996--2005 Han-Wen Nienhuys
+  (c) 1996--2006 Han-Wen Nienhuys
 */
 
 #ifndef KEYWORD_HH
 #define KEYWORD_HH
 
-#include "array.hh"
+#include "std-vector.hh"
 
 /* for the keyword table */
 struct Keyword_ent
@@ -21,10 +21,10 @@ struct Keyword_ent
 */
 struct Keyword_table
 {
-  Array<Keyword_ent> table_;
+  vector<Keyword_ent> table_;
 
   Keyword_table (Keyword_ent *);
-  int lookup (char const *s) const;
+  vsize lookup (char const *s) const;
 };
 
 #endif // KEYWORD_HH