[layout] Fix a return_trace

This commit is contained in:
Behdad Esfahbod 2023-01-26 12:23:12 -07:00
parent 05a2f31592
commit 2fede3ef4a
1 changed files with 1 additions and 1 deletions

View File

@ -1353,7 +1353,7 @@ struct Lookup
// Generally we shouldn't end up with an empty lookup as we pre-prune them during the planning
// phase, but it can happen in rare cases such as when during closure subtable is considered
// degenerate (see: https://github.com/harfbuzz/harfbuzz/issues/3853)
return true;
return_trace (true);
}
template <typename TSubTable>