mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 08:43:47 +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);
|
process(position);
|
||||||
|
|
||||||
Cursor higher = position, lower = position;
|
higher = position; higher_found = false;
|
||||||
bool higher_found = false;
|
|
||||||
bool lower_found = false;
|
|
||||||
up(higher); yTest(higher, higher_found);
|
up(higher); yTest(higher, higher_found);
|
||||||
|
lower = position; lower_found = false;
|
||||||
down(lower); yTest(lower, lower_found);
|
down(lower); yTest(lower, lower_found);
|
||||||
|
|
||||||
i = position, h = higher, l = lower;
|
i = position, h = higher, l = lower;
|
||||||
|
|
Loading…
Reference in a new issue