[aat] Minor, remove extra semicolons

This commit is contained in:
Ebrahim Byagowi 2018-10-31 14:02:37 +03:30 committed by GitHub
parent c962d5e714
commit 642c9dcf1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View 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; }
};