[aat] Minor, remove extra semicolons
authorEbrahim Byagowi <ebrahim@gnu.org>
Wed, 31 Oct 2018 10:32:37 +0000 (14:02 +0330)
committerGitHub <noreply@github.com>
Wed, 31 Oct 2018 10:32:37 +0000 (14:02 +0330)
src/hb-aat-layout-morx-table.hh

index 08a380a..51bb3b3 100644 (file)
@@ -388,11 +388,11 @@ struct LigatureEntry<true>
 
   template <typename Flags>
   static inline bool performAction (Flags flags)
-  { return flags & PerformAction; };
+  { return flags & PerformAction; }
 
   template <typename Entry, typename Flags>
   static inline unsigned int ligActionIndex (Entry &entry, Flags flags)
-  { return entry->data.ligActionIndex; };
+  { return entry->data.ligActionIndex; }
 };
 template <>
 struct LigatureEntry<false>
@@ -412,11 +412,11 @@ struct LigatureEntry<false>
 
   template <typename Flags>
   static inline bool performAction (Flags flags)
-  { return flags & Offset; };
+  { return flags & Offset; }
 
   template <typename Entry, typename Flags>
   static inline unsigned int ligActionIndex (Entry &entry, Flags flags)
-  { return flags & 0x3FFF; };
+  { return flags & 0x3FFF; }
 };