Fix one more -Wshadow warning

https://bugzilla.mozilla.org/show_bug.cgi?id=1215894
This commit is contained in:
Behdad Esfahbod 2015-10-21 11:20:55 -02:00
parent 6f932bc8f9
commit 4a6b1eedbb
1 changed files with 3 additions and 3 deletions

View File

@ -355,11 +355,11 @@ struct hb_apply_context_t :
{ {
matcher.set_lookup_props (lookup_props); matcher.set_lookup_props (lookup_props);
} }
inline void set_match_func (matcher_t::match_func_t match_func, inline void set_match_func (matcher_t::match_func_t match_func_,
const void *match_data, const void *match_data_,
const USHORT glyph_data[]) const USHORT glyph_data[])
{ {
matcher.set_match_func (match_func, match_data); matcher.set_match_func (match_func_, match_data_);
match_glyph_data = glyph_data; match_glyph_data = glyph_data;
} }