From 004edf3bdac77564d39516b51b0666de60e65ece Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 15 May 2019 01:02:50 -0700 Subject: [PATCH] Ugh. How was the Travis bot happy before, but isn't now?! :( --- src/hb-open-type.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/hb-open-type.hh b/src/hb-open-type.hh index c150fe2a3..9d6e1e51f 100644 --- a/src/hb-open-type.hh +++ b/src/hb-open-type.hh @@ -357,13 +357,13 @@ using NNOffsetTo = OffsetTo; template using LNNOffsetTo = LOffsetTo; -template +template static inline const Type& operator + (const Base *base, const OffsetTo &offset) { return offset (base); } -template +template static inline const Type& operator + (const OffsetTo &offset, const Base *base) { return offset (base); } -template +template static inline Type& operator + (Base *base, OffsetTo &offset) { return offset (base); } -template +template static inline Type& operator + (OffsetTo &offset, Base *base) { return offset (base); }