forked from organicmaps/organicmaps
Review fixes
This commit is contained in:
parent
fe874257ac
commit
8d0881bbcf
1 changed files with 17 additions and 11 deletions
|
@ -122,20 +122,25 @@ public:
|
|||
if (inWater)
|
||||
{
|
||||
state = ProcessState::Water;
|
||||
break;
|
||||
}
|
||||
|
||||
points.push_back(p);
|
||||
state = ProcessState::Earth;
|
||||
else
|
||||
{
|
||||
points.push_back(p);
|
||||
state = ProcessState::Earth;
|
||||
}
|
||||
break;
|
||||
}
|
||||
case ProcessState::Water:
|
||||
{
|
||||
if (inWater)
|
||||
break;
|
||||
|
||||
points.push_back(p);
|
||||
state = ProcessState::Earth;
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
else
|
||||
{
|
||||
points.push_back(p);
|
||||
state = ProcessState::Earth;
|
||||
}
|
||||
break;
|
||||
}
|
||||
case ProcessState::Earth:
|
||||
|
@ -151,10 +156,11 @@ public:
|
|||
}
|
||||
points.clear();
|
||||
state = ProcessState::Water;
|
||||
break;
|
||||
}
|
||||
|
||||
points.push_back(p);
|
||||
else
|
||||
{
|
||||
points.push_back(p);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue