diff --git a/src/hb-open-type.hh b/src/hb-open-type.hh index a47eb745a..7dea171df 100644 --- a/src/hb-open-type.hh +++ b/src/hb-open-type.hh @@ -59,6 +59,7 @@ struct IntType typedef Type type; typedef typename hb_signedness_int (hb_is_signed (Type)) wide_type; + //TODO(C++11)IntType& operator = (wide_type v) { set (v); return *this; } void set (wide_type i) { v.set (i); } operator wide_type () const { return v; } bool operator == (const IntType &o) const { return (Type) v == (Type) o.v; }