mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-06 05:55:06 +00:00
[graph] Make space_for non-recursive
It was tail-recursive so perhaps the compiler did the same. Anyway, make it explicit now.
This commit is contained in:
parent
dcd3afcabf
commit
91c449a64a
1 changed files with 3 additions and 1 deletions
|
@ -1219,6 +1219,7 @@ struct graph_t
|
|||
|
||||
unsigned space_for (unsigned index, unsigned* root = nullptr) const
|
||||
{
|
||||
loop:
|
||||
assert (index < vertices_.length);
|
||||
const auto& node = vertices_[index];
|
||||
if (node.space)
|
||||
|
@ -1235,7 +1236,8 @@ struct graph_t
|
|||
return 0;
|
||||
}
|
||||
|
||||
return space_for (*node.parents_iter (), root);
|
||||
index = *node.parents_iter ();
|
||||
goto loop;
|
||||
}
|
||||
|
||||
void err_other_error () { this->successful = false; }
|
||||
|
|
Loading…
Add table
Reference in a new issue