From 92fde3dea282d308fad2b8e93cd638aa813c6f2a Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Fri, 31 May 2019 20:16:25 -0700 Subject: [PATCH] Whitespace --- src/hb-algs.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/hb-algs.hh b/src/hb-algs.hh index 007db9e40..5fe9b0321 100644 --- a/src/hb-algs.hh +++ b/src/hb-algs.hh @@ -807,7 +807,7 @@ struct hb_bitwise_and static constexpr bool passthru_left = false; static constexpr bool passthru_right = false; template auto - operator () (const T &a, const T &b) const HB_AUTO_RETURN (a & b) + operator () (const T &a, const T &b) const HB_AUTO_RETURN (a & b) } HB_FUNCOBJ (hb_bitwise_and); struct hb_bitwise_or @@ -815,7 +815,7 @@ struct hb_bitwise_or static constexpr bool passthru_left = true; static constexpr bool passthru_right = true; template auto - operator () (const T &a, const T &b) const HB_AUTO_RETURN (a | b) + operator () (const T &a, const T &b) const HB_AUTO_RETURN (a | b) } HB_FUNCOBJ (hb_bitwise_or); struct hb_bitwise_xor @@ -823,7 +823,7 @@ struct hb_bitwise_xor static constexpr bool passthru_left = true; static constexpr bool passthru_right = true; template auto - operator () (const T &a, const T &b) const HB_AUTO_RETURN (a ^ b) + operator () (const T &a, const T &b) const HB_AUTO_RETURN (a ^ b) } HB_FUNCOBJ (hb_bitwise_xor); struct hb_bitwise_sub @@ -831,7 +831,7 @@ struct hb_bitwise_sub static constexpr bool passthru_left = true; static constexpr bool passthru_right = false; template auto - operator () (const T &a, const T &b) const HB_AUTO_RETURN (a & ~b) + operator () (const T &a, const T &b) const HB_AUTO_RETURN (a & ~b) } HB_FUNCOBJ (hb_bitwise_sub);