Revert symmetric OffsetTo overloads

Reverts 57f65ae935

Caused ambiguous-overload on some gcc...
This commit is contained in:
Behdad Esfahbod 2019-05-15 00:42:47 -07:00
parent d0df996cdc
commit 01912efb74
1 changed files with 0 additions and 4 deletions

View File

@ -282,11 +282,7 @@ struct OffsetTo : Offset<OffsetType, has_null>
template <typename Base>
friend const Type& operator + (const Base *base, const OffsetTo &offset) { return offset (base); }
template <typename Base>
friend const Type& operator + (const OffsetTo &offset, const Base *base) { return offset (base); }
template <typename Base>
friend Type& operator + (Base *base, OffsetTo &offset) { return offset (base); }
template <typename Base>
friend Type& operator + (OffsetTo &offset, Base *base) { return offset (base); }
Type& serialize (hb_serialize_context_t *c, const void *base)
{