diff --git a/src/hb-open-type.hh b/src/hb-open-type.hh index 57b22a8e3..ec7b5db89 100644 --- a/src/hb-open-type.hh +++ b/src/hb-open-type.hh @@ -279,6 +279,11 @@ struct OffsetTo : Offset return StructAtOffset (base, *this); } + template + friend const Type& operator + (const Base &base, const OffsetTo &offset) { return offset (base); } + template + friend Type& operator + (Base &base, OffsetTo &offset) { return offset (base); } + Type& serialize (hb_serialize_context_t *c, const void *base) { return * (Type *) Offset::serialize (c, base); @@ -357,11 +362,6 @@ using NNOffsetTo = OffsetTo; template using LNNOffsetTo = LOffsetTo; -template -static inline const Type& operator + (const Base &base, const OffsetTo &offset) { return offset (base); } -template -static inline Type& operator + (Base &base, OffsetTo &offset) { return offset (base); } - /* * Array Types