WHitespace
This commit is contained in:
parent
77060bcda2
commit
11456b2d9c
|
@ -1389,10 +1389,8 @@ struct RuleSet
|
||||||
{
|
{
|
||||||
TRACE_WOULD_APPLY (this);
|
TRACE_WOULD_APPLY (this);
|
||||||
for (auto it = hb_iter (rule); it; ++it)
|
for (auto it = hb_iter (rule); it; ++it)
|
||||||
{
|
|
||||||
if ((this+*it).would_apply (c, lookup_context))
|
if ((this+*it).would_apply (c, lookup_context))
|
||||||
return_trace (true);
|
return_trace (true);
|
||||||
}
|
|
||||||
return_trace (false);
|
return_trace (false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1401,10 +1399,8 @@ struct RuleSet
|
||||||
{
|
{
|
||||||
TRACE_APPLY (this);
|
TRACE_APPLY (this);
|
||||||
for (auto it = hb_iter (rule); it; ++it)
|
for (auto it = hb_iter (rule); it; ++it)
|
||||||
{
|
|
||||||
if ((this+*it).apply (c, lookup_context))
|
if ((this+*it).apply (c, lookup_context))
|
||||||
return_trace (true);
|
return_trace (true);
|
||||||
}
|
|
||||||
return_trace (false);
|
return_trace (false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue