[morx] Minor

This commit is contained in:
Behdad Esfahbod 2018-11-07 10:58:50 -05:00
parent 5b17853547
commit e890753ebb
1 changed files with 3 additions and 3 deletions

View File

@ -375,14 +375,14 @@ struct LigatureEntry<true>
Reserved = 0x1FFF, /* These bits are reserved and should be set to 0. */ Reserved = 0x1FFF, /* These bits are reserved and should be set to 0. */
}; };
typedef struct struct EntryData
{ {
HBUINT16 ligActionIndex; /* Index to the first ligActionTable entry HBUINT16 ligActionIndex; /* Index to the first ligActionTable entry
* for processing this group, if indicated * for processing this group, if indicated
* by the flags. */ * by the flags. */
public: public:
DEFINE_SIZE_STATIC (2); DEFINE_SIZE_STATIC (2);
} EntryData; };
template <typename Flags> template <typename Flags>
static inline bool performAction (Flags flags) static inline bool performAction (Flags flags)
@ -428,11 +428,11 @@ struct LigatureSubtable
struct driver_context_t struct driver_context_t
{ {
static const bool in_place = false;
enum enum
{ {
DontAdvance = LigatureEntryT::DontAdvance, DontAdvance = LigatureEntryT::DontAdvance,
}; };
static const bool in_place = false;
enum LigActionFlags enum LigActionFlags
{ {
LigActionLast = 0x80000000, /* This is the last action in the list. This also LigActionLast = 0x80000000, /* This is the last action in the list. This also