From e1b2edb04af7bd2b4eecb59392f75abcc72cd8a6 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 15 May 2019 01:12:04 -0700 Subject: [PATCH] Completely revert the thing back --- src/hb-open-type.hh | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/hb-open-type.hh b/src/hb-open-type.hh index 1471f5120..57b22a8e3 100644 --- a/src/hb-open-type.hh +++ b/src/hb-open-type.hh @@ -279,15 +279,6 @@ struct OffsetTo : Offset return StructAtOffset (base, *this); } - 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) { return * (Type *) Offset::serialize (c, base); @@ -366,6 +357,11 @@ 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