Minor
This commit is contained in:
parent
2c9d6485a1
commit
08f1eede1b
|
@ -1242,24 +1242,9 @@ struct MarkMarkPos
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
struct ContextPos : Context
|
struct ContextPos : Context {};
|
||||||
{
|
|
||||||
template <typename context_t>
|
|
||||||
inline typename context_t::return_t process (context_t *c) const
|
|
||||||
{
|
|
||||||
return Context::process (c);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
struct ChainContextPos : ChainContext
|
|
||||||
{
|
|
||||||
template <typename context_t>
|
|
||||||
inline typename context_t::return_t process (context_t *c) const
|
|
||||||
{
|
|
||||||
return ChainContext::process (c);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
struct ChainContextPos : ChainContext {};
|
||||||
|
|
||||||
struct ExtensionPos : Extension
|
struct ExtensionPos : Extension
|
||||||
{
|
{
|
||||||
|
|
|
@ -874,24 +874,9 @@ struct LigatureSubst
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
struct ContextSubst : Context
|
struct ContextSubst : Context {};
|
||||||
{
|
|
||||||
template <typename context_t>
|
|
||||||
inline typename context_t::return_t process (context_t *c) const
|
|
||||||
{
|
|
||||||
return Context::process (c);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
struct ChainContextSubst : ChainContext
|
|
||||||
{
|
|
||||||
template <typename context_t>
|
|
||||||
inline typename context_t::return_t process (context_t *c) const
|
|
||||||
{
|
|
||||||
return ChainContext::process (c);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
struct ChainContextSubst : ChainContext {};
|
||||||
|
|
||||||
struct ExtensionSubst : Extension
|
struct ExtensionSubst : Extension
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue