From b1d0c589154d080ff519c3e80aea923185787b13 Mon Sep 17 00:00:00 2001 From: Michiharu Ariza Date: Thu, 1 Nov 2018 16:33:46 -0700 Subject: [PATCH] removed extraneous ;s --- src/hb-cff-interp-common.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hb-cff-interp-common.hh b/src/hb-cff-interp-common.hh index 9567b6b66..4f1764a33 100644 --- a/src/hb-cff-interp-common.hh +++ b/src/hb-cff-interp-common.hh @@ -217,9 +217,9 @@ struct Number inline void fini (void) {} - inline void set_int (int v) { format = NumInt; u.int_val = v; }; + inline void set_int (int v) { format = NumInt; u.int_val = v; } inline int to_int (void) const { return is_int ()? u.int_val: (int)to_real (); } - inline void set_fixed (int32_t v) { format = NumFixed; u.fixed_val = v; }; + inline void set_fixed (int32_t v) { format = NumFixed; u.fixed_val = v; } inline int32_t to_fixed (void) const { if (is_fixed ()) @@ -229,7 +229,7 @@ struct Number else return (int32_t)(u.int_val << 16); } - inline void set_real (float v) { format = NumReal; u.real_val = v; }; + inline void set_real (float v) { format = NumReal; u.real_val = v; } inline float to_real (void) const { if (is_real ())