未验证 提交 7ace1007 编写于 作者: E Ebrahim Byagowi 提交者: GitHub

Minor, fix two more ArrayOf incorrect operator logic

上级 a1240383
......@@ -382,7 +382,7 @@ struct UnsizedArrayOf
hb_array_t<const Type> as_array (unsigned int len) const
{ return hb_array (arrayZ, len); }
operator hb_array_t<Type> (void) { return as_array (); }
operator hb_array_t<const Type> (void) const { as_array (); }
operator hb_array_t<const Type> (void) const { return as_array (); }
template <typename T>
Type &lsearch (unsigned int len, const T &x, Type &not_found = Crap (Type))
......@@ -534,7 +534,7 @@ struct ArrayOf
hb_array_t<const Type> as_array (void) const
{ return hb_array (arrayZ, len); }
operator hb_array_t<Type> (void) { return as_array (); }
operator hb_array_t<const Type> (void) const { as_array (); }
operator hb_array_t<const Type> (void) const { return as_array (); }
hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int count) const
{ return as_array ().sub_array (start_offset, count);}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册