Remove unused local variable
This commit is contained in:
parent
388d3fd8da
commit
cb352ac609
1 changed files with 0 additions and 2 deletions
|
@ -274,14 +274,12 @@ bool hit_test_first(PathType& path, double x, double y)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
unsigned count = 0;
|
|
||||||
while (SEG_END != (command = path.vertex(&x1, &y1)))
|
while (SEG_END != (command = path.vertex(&x1, &y1)))
|
||||||
{
|
{
|
||||||
if (command == SEG_CLOSE)
|
if (command == SEG_CLOSE)
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
++count;
|
|
||||||
if (command == SEG_MOVETO)
|
if (command == SEG_MOVETO)
|
||||||
{
|
{
|
||||||
x0 = x1;
|
x0 = x1;
|
||||||
|
|
Loading…
Reference in a new issue