[aat] Minor, remove extra semicolons
This commit is contained in:
parent
c962d5e714
commit
642c9dcf1b
|
@ -388,11 +388,11 @@ struct LigatureEntry<true>
|
||||||
|
|
||||||
template <typename Flags>
|
template <typename Flags>
|
||||||
static inline bool performAction (Flags flags)
|
static inline bool performAction (Flags flags)
|
||||||
{ return flags & PerformAction; };
|
{ return flags & PerformAction; }
|
||||||
|
|
||||||
template <typename Entry, typename Flags>
|
template <typename Entry, typename Flags>
|
||||||
static inline unsigned int ligActionIndex (Entry &entry, Flags flags)
|
static inline unsigned int ligActionIndex (Entry &entry, Flags flags)
|
||||||
{ return entry->data.ligActionIndex; };
|
{ return entry->data.ligActionIndex; }
|
||||||
};
|
};
|
||||||
template <>
|
template <>
|
||||||
struct LigatureEntry<false>
|
struct LigatureEntry<false>
|
||||||
|
@ -412,11 +412,11 @@ struct LigatureEntry<false>
|
||||||
|
|
||||||
template <typename Flags>
|
template <typename Flags>
|
||||||
static inline bool performAction (Flags flags)
|
static inline bool performAction (Flags flags)
|
||||||
{ return flags & Offset; };
|
{ return flags & Offset; }
|
||||||
|
|
||||||
template <typename Entry, typename Flags>
|
template <typename Entry, typename Flags>
|
||||||
static inline unsigned int ligActionIndex (Entry &entry, Flags flags)
|
static inline unsigned int ligActionIndex (Entry &entry, Flags flags)
|
||||||
{ return flags & 0x3FFF; };
|
{ return flags & 0x3FFF; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue