提交 f2b56af3 编写于 作者: B Behdad Esfahbod

[iter] Remove hack for older compilers

上级 2ea79e03
......@@ -62,7 +62,7 @@ struct hb_iter_t
explicit_operator bool () const { return more (); }
item_t& operator * () const { return item (); }
item_t* operator -> () const { return hb_addressof (item ()); }
item_t& operator [] (signed i) const { return item_at ((unsigned) i); }
item_t& operator [] (unsigned i) const { return item_at (i); }
iter_t& operator += (unsigned count) { forward (count); return *thiz(); }
iter_t& operator ++ () { next (); return *thiz(); }
iter_t& operator -= (unsigned count) { rewind (count); return *thiz(); }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册