vertex placement: fix infinite loop
This commit is contained in:
parent
b0759e8ade
commit
5ea57b62de
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ struct apply_vertex_placement
|
||||||
{
|
{
|
||||||
double label_x, label_y, z = 0;
|
double label_x, label_y, z = 0;
|
||||||
va.rewind(0);
|
va.rewind(0);
|
||||||
for (auto cmd = va.vertex(&label_x, &label_y); cmd != SEG_END;)
|
for (unsigned cmd; (cmd = va.vertex(&label_x, &label_y)) != SEG_END; )
|
||||||
{
|
{
|
||||||
if (cmd != SEG_CLOSE)
|
if (cmd != SEG_CLOSE)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue