diff --git a/src/hb-open-type.hh b/src/hb-open-type.hh index 6c888f6bb..fcf1047b9 100644 --- a/src/hb-open-type.hh +++ b/src/hb-open-type.hh @@ -282,7 +282,11 @@ struct OffsetTo : Offset template friend const Type& operator + (const Base *base, const OffsetTo &offset) { return offset (base); } template + friend const Type& operator + (const OffsetTo &offset, const Base *base) { return offset (base); } + template friend Type& operator + (Base *base, OffsetTo &offset) { return offset (base); } + template + friend Type& operator + (OffsetTo &offset, Base *base) { return offset (base); } Type& serialize (hb_serialize_context_t *c, const void *base) {