mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 04:44:08 +02:00
removes duplicate local declarations
This commit is contained in:
parent
bec1529cac
commit
a0ef60efe7
1 changed files with 2 additions and 3 deletions
|
@ -44,10 +44,9 @@ struct floodFill_impl : Strategy
|
|||
|
||||
process(position);
|
||||
|
||||
Cursor higher = position, lower = position;
|
||||
bool higher_found = false;
|
||||
bool lower_found = false;
|
||||
higher = position; higher_found = false;
|
||||
up(higher); yTest(higher, higher_found);
|
||||
lower = position; lower_found = false;
|
||||
down(lower); yTest(lower, lower_found);
|
||||
|
||||
i = position, h = higher, l = lower;
|
||||
|
|
Loading…
Reference in a new issue