commit | ffd321afd91429c5de7ab03d71ef1030044f53cb | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <[email protected]> | Wed Apr 21 00:14:12 2010 -0400 |
committer | Behdad Esfahbod <[email protected]> | Wed Apr 21 01:55:09 2010 -0400 |
tree | 2b713622ca8b018fdfca904df1efe42ac4f95688 | |
parent | 00e23fcc6fd0eee5c582251bf3de6a2703fbbd3e [diff] [blame] |
Simplify Tag struct
diff --git a/src/hb-open-file-private.hh b/src/hb-open-file-private.hh index e72a098..ce5140f 100644 --- a/src/hb-open-file-private.hh +++ b/src/hb-open-file-private.hh
@@ -84,7 +84,8 @@ } inline bool find_table_index (hb_tag_t tag, unsigned int *table_index) const { - const Tag t = tag; + Tag t; + t.set (tag); // TODO bsearch unsigned int count = numTables; for (unsigned int i = 0; i < count; i++)