This commit is contained in:
Behdad Esfahbod 2012-11-23 16:51:43 -05:00
parent 2c9d6485a1
commit 08f1eede1b
2 changed files with 4 additions and 34 deletions

View File

@ -1242,24 +1242,9 @@ struct MarkMarkPos
};
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 ContextPos : Context {};
struct ChainContextPos : ChainContext {};
struct ExtensionPos : Extension
{

View File

@ -874,24 +874,9 @@ struct LigatureSubst
};
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 ContextSubst : Context {};
struct ChainContextSubst : ChainContext {};
struct ExtensionSubst : Extension
{