removes duplicate local declarations

This commit is contained in:
tosh 2013-03-27 04:49:40 +01:00
parent bec1529cac
commit a0ef60efe7

View file

@ -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;