From da4996183693b4acecf245c58b58d6040d92a1bf Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 7 Jan 2019 18:36:14 -0500 Subject: [PATCH] [iter] Remove comment --- src/hb-iter.hh | 1 - 1 file changed, 1 deletion(-) diff --git a/src/hb-iter.hh b/src/hb-iter.hh index 5c02a27f3..beb7c93b6 100644 --- a/src/hb-iter.hh +++ b/src/hb-iter.hh @@ -69,7 +69,6 @@ struct hb_iter_t iter_t iter () const { return *thiz(); } explicit_operator bool () const { return thiz()->__more__ (); } unsigned len () const { return thiz()->__len__ (); } - /* TODO enable_if item_t is reference type only. */ hb_remove_reference (item_t)* operator -> () const { return hb_addressof (*thiz()); } item_t operator * () const { return thiz()->__item__ (); } item_t operator [] (unsigned i) const { return thiz()->__item_at__ (i); }